小码哥的IT人生

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])

相关页面

False 关键字。

请在我们的 Python 运算符教程 中学习有关比较的更多知识。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024