Python True 关键字
Python基础 2022-06-06 16:27:08小码哥的IT人生shichen
Python True 关键字
实例
打印比较 “8大于7” 的结果:
print(8 > 7)
完整实例:
print(8 > 7)
定义和用法
True 关键字是一个布尔值,是比较运算的结果。
True 关键字与 1 相同(Fals 与 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])
完整实例:
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])