📜  Python bool()函数与示例

📅  最后修改于: 2020-10-30 05:56:20             🧑  作者: Mango

Python bool()函数

Python bool()方法使用标准真值测试过程将值转换为布尔值(True或False)。

签名

bool([value])

参量

将值传递给bool()不是强制性的。如果不传递值,则bool()返回False。

通常,bool()采用单个参数值。

返回

bool()返回:

  • 如果省略该值,则为False或false
  • 如果值为true,则为true

Python 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