bool 函数

语法

  • bool bool(value)

参数

  1. value—(float, bool, string)
    要转换的值。

返回

基于 value 计算的布尔值。

描述

bool 函数用于将 value 转换为相应的布尔值。 如果浮点值等于 0,则其为 false,否则为 true。 如果字符串等于 "f"、"false"、"0"、0.0" 等,则其为 false,否则为 true。

相关内容

示例

bool(1)
# result = true
bool(0)
# result = false
bool("1")
# result = true
bool(6.66)
# result = true
bool("false")
# result = false
bool("f")
# result = false
bool("true")
# result = true
bool("beneath the remains")
# result = true
bool(11.5 = 0)
# result = false