标签:
ture 只能写成 True
false 只能写成 False
>>>print True or False
结果:True
>>>print True and False
结果:False
>>>print not True
Python运算
原文地址:http://www.cnblogs.com/for-you/p/4901256.html