例如:
打印输出比较结果“ 7大于6”:
print(7 > 6)
1、定义和用法
True
关键字是布尔值,是比较操作的结果。
True
关键字与1相同(False
与0相同)。
2、使用示例
例如:
其他返回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])