布爾值在Python中用于表示真(True)或假(False)的值。它們通常用于條件測試和控制流程。
布爾值可以直接賦值給變量,也可以與其他布爾值進行比較。以下是一些常見的布爾值用法示例:
x = True
y = False
if x:
print("x is True")
else:
print("x is False")
if y:
print("y is True")
else:
print("y is False")
x = 5
y = 10
print(x == y) # False
print(x != y) # True
print(x > y) # False
print(x >= y) # False
print(x < y) # True
print(x <= y) # True
x = True
y = False
print(x and y) # False
print(x or y) # True
print(not x) # False
布爾值在控制流程中特別有用,可以用于條件判斷、循環等。它們也可以與其他數據類型(如整數、字符串等)進行比較和運算。