Python 关键字 True
定义和用法
True
关键字是一个布尔值,和一个比较操作的结果。
True
关键字与1相同(False
与0一样)。
更多实例
实例
其他返回True的比较:print(5 < 6) print(2 in [1,2,3]) print(5 is 5) print(5 == 5) print(5 == 5 or 6 == 7) print(5 == 5 and 7 == 7) print("hello" is not "goodbye") print(not(5 == 7)) print(4 not in [1,2,3])运行实例»
相关页面
False
关键字。
在Python 运算符教程中阅读有关比较的更多信息。