布尔值 (bool)

一个布尔值对象,其值为 truefalse

返回值

布尔值对象由以下函数和方法返回

布尔值方法

bool.to_int()

如果为 true,则返回 1,如果为 false,则返回 0

签名

int to_int()


bool.to_string()

如果布尔值为真,则返回字符串 'true',否则返回 'false'。您也可以传递两个字符串作为位置参数来指定对真/假返回什么。例如,bool.to_string('yes', 'no') 如果布尔值为真则返回 yes,如果为假则返回 no

签名

# Returns the string `'true'` if the boolean is true or `'false'` otherwise
str to_string(
  str [true_str],    # The string to return when the boolean is `true`
  str [false_str],   # The string to return when the boolean is `false`
)

参数

方法 bool.to_string() 接受以下位置参数

名称 类型 描述 标签
true_str str

当布尔值为 true 时要返回的字符串

[可选]

默认 = 'true'

false_str str

当布尔值为 false 时要返回的字符串

[可选]

默认 = 'false'


搜索结果为