📅  最后修改于: 2020-10-30 05:56:20             🧑  作者: Mango
Python bool()方法使用标准真值测试过程将值转换为布尔值(True或False)。
bool([value])
将值传递给bool()不是强制性的。如果不传递值,则bool()返回False。
通常,bool()采用单个参数值。
bool()返回:
test = []
print(test,'is',bool(test))
test = [0]
print(test,'is',bool(test))
test = 0.0
print(test,'is',bool(test))
test = None
print(test,'is',bool(test))
test = True
print(test,'is',bool(test))
test = 'Easy string'
print(test,'is',bool(test))
输出:
[] is False
[0] is True
0.0 is False
None is False
True is True
Easy string is True