Python bool 用法详解及示例
Python bool 函数用法和语法
bool()
函数是 Python 的内置函数之一,用于将给定的值转换为布尔类型(True 或 False)。
语法:
bool(value)
其中,value
是要进行转换的值。
示例:
- 将整数转换为布尔类型:
number = 5
result = bool(number)
print(result) # 输出 True
- 将浮点数转换为布尔类型:
float_number = 3.14
result = bool(float_number)
print(result) # 输出 True
- 将字符串转换为布尔类型:
empty_string = ""
result = bool(empty_string)
print(result) # 输出 False
non_empty_string = "Hello"
result = bool(non_empty_string)
print(result) # 输出 True
在这些示例中,bool()
函数将不同类型的值转换为布尔类型。非零整数、非零浮点数和非空字符串都被转换为 True,而零整数、零浮点数和空字符串则被转换为 False。