python bool值

写习惯了C#的代码,在想要将一个字符串'False'转换为bool型的时候,很自然的写了如下的Python代码:

image

看到上面的结果了没?是True。突然记起Python中除了''、""、0、()、[]、{}、None为False之外,其他的都是True。也就是说上面的'False'就是一个不为空的字符串,所以结果就为True了。

为了深入了解下Python的bool类型,就看了下说明:

>>> help(True)
Help on bool object:

class bool(int)
|  bool(x) -> bool
|  
|  Returns True when the argument x is true, False otherwise.
|  The builtins True and False are the only two instances of the class bool.
The class bool is a subclass of the class int, and cannot be subclassed.
|  
|  Method resolution order:
|      bool
|      int
|      object
|  
|  Methods defined here:
|  
|  __and__(...)
|      x.__and__(y) <==> x&y
|  
|  __or__(...)
|      x.__or__(y) <==> x|y

可以看到bool是int的子类来的,并且不可以子类化

image

因为bool为int的子类,所以用1表示True,0表示False:

image

看到上面2==True是为false的。但是我们看下面的代码:

image

我们看到True被打印出来了,我想这样是因为if语句会在内部去调用bool()方法:

image

因为bool是继承自int类型的,所以我猜想在比较的时候最终是会转换为0和1来比较的,就像:

image

(注:这里只是猜想,未经证实)

既然bool是继承自int类型的所以很自然bool类型是支持数学运算的:

image

最后,我能想到的判断字符串是否有'False'的就是:

image

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值