例如:
打印输出比较结果“5大于6”:
print(5 > 6)
1、定义和用法
关键字False
是布尔值,是比较操作的结果。
关键字False
与0相同(True
与1相同)。
2、使用示例
例如:
其他返回False的比较:
print(5 > 6)
print(4 in [1,2,3])
print("hello" is "goodbye")
print(5 == 6)
print(5 == 6 or 6 == 7)
print(5 == 6 and 6 == 7)
print("hello" is not "hello")
print(not(5 == 5))
print(3 not in [1,2,3])