标签:python
逻辑运算
>>>print True or True
# and, “与”运算, 操作符两边同时为真,结果为真
>>>print True or False
# or, “或”运算, 其中之一为真即为真,两边同时为假,结果为假
>>>print not True
# not, “非”运算, 取反,得到一个相反的布尔类型值
本文出自 “每天进步一点点” 博客,请务必保留此出处http://zuoshou.blog.51cto.com/2579903/1976851
标签:python
原文地址:http://zuoshou.blog.51cto.com/2579903/1976851