阅读量:0
在Python中,True和False是布尔类型的两个常量,用于表示真和假。它们通常用于条件判断和逻辑运算。
以下是True和False的用法:
条件判断:
- 在if语句中,True会执行if代码块,False会跳过if代码块。
- 在while和for循环中,True会一直执行循环,False会退出循环。
逻辑运算:
- 与运算:使用and操作符,当两个操作数都为True时,结果为True;否则结果为False。
- 或运算:使用or操作符,当两个操作数中至少有一个为True时,结果为True;否则结果为False。
- 非运算:使用not操作符,将True变为False,将False变为True。
示例:
x = 5 y = 10 # 条件判断 if x < y: print("x is less than y") # 输出:x is less than y # 逻辑运算 if x < y and x > 0: print("Both conditions are True") # 输出:Both conditions are True if x > y or x > 0: print("At least one condition is True") # 输出:At least one condition is True if not False: print("Not False is True") # 输出:Not False is True
需要注意的是,True和False是Python中的关键字,首字母必须大写。使用其他大小写形式(如true、false)会导致SyntaxError。