Python 内建函数 - bool([x])

Manual

Return a Boolean value, i.e. one of True or False. x is converted using the standardtruth testing procedure. Ifx is false or omitted, this returnsFalse; otherwise it returnsTrue. The bool class is a subclass ofint . It cannot be subclassed further. Its only instances areFalse and True.

直译

返回一个布尔值,例如True 或 False之一。‘x’通过使用标准的真值检测程序(好搞siao)— truth testing procedure。如果’x’为否或省略,则返回False;否则返回True。bool类是int子类,它不能进一步划分子类,且仅具有False和True实例。

实例

>>> bool([0])
True
>>> bool([1])
True
>>> bool([False])
True
>>> bool([])
False
>>> bool([''])
True
>>> bool(())
False
>>> bool({})
False
>>> bool((False))
False

拓展阅读

真值检测程序(Truth Testing Procedure)
数值类型(Numeric Type)- 整数(int)、浮点数(float)、复数(complex)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值