Python中的逻辑运算符,,参考资料:http:
Python中的逻辑运算符,,参考资料:http:
参考资料:http://blog.csdn.net/sasoritattoo/article/details/12451359
一、逻辑判断词not
1.在python中not是逻辑判断词,用于布尔型True和False,not True为False,not False为True,以下是几个常用的not的用法:
(1) not与逻辑判断句if连用,代表not后面的表达式为False的时候,执行冒号后面的语句。比如:
a = False
if not a: (这里因为a是False,所以not a就是True)
print "hello"
这里就能够输出结果hello
(2) 判断元素是否在列表或者字典中,if a not in b,a是元素,b是列表或字典,这句话的意思是如果a不在列表b中,那么就执行冒号后面的语句,比如:
a = 5
b = [1, 2, 3]
if a not in b:
print "hello"
这里也能够输出结果hello
2.在python中None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元组()都相当于False
例子1:
b= None
if not b:
print 1
else:
print 0
输出结果为 1
例子2:
b= False
if not b:
print 1
else:
print 0
输出结果为 1
例子3:
b= ‘‘
if not b:
print 1
else:
print 0
输出结果为 1i
当把b的值改为0、空列表[]、空字典{}或空元组()时,输出结果一样的,在此就不一一列出
Python中的逻辑运算符
相关内容
- Python必记函数,,Python字符串函
- python中用销毁函数__del__退出浏览器出错,,代码如下:
- python爬虫之正则表达式,,一、简介 正则表达
- Python全栈开发,Day2,,一、Pycharm的
- appium-python-元素定位,,appium继承了s
- Python入门-字符串常用方法,,Python字符串字
- Linux下载Python并运行Django,,Linux下载安装P
- Python 面试题 字符串 删除多少个字符使得出现做多的字
- (Python3 自定义函数实现数字金字塔 代码,,def kzkz(c
- WGAN将数值限制在一定范围内 Python代码 tf.clip_by_valu
评论关闭