zoukankan      html  css  js  c++  java
  • 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

    不知道是否有更好的方法呢?

  • 相关阅读:
    (转)golang获取当前时间、时间戳和时间字符串及它们之间的相互转换
    FFmpeg常用命令
    go cmd nohup 的坑
    Nginx配置详解(转)
    记录一次go性能调试的过程
    github徽标引入
    golang 关于 interface 的学习整理
    <转>Go语言TCP Socket编程
    [转]Go里面的unsafe包详解
    linux extglob模式 和rm反选
  • 原文地址:https://www.cnblogs.com/QLeelulu/p/1570292.html
Copyright © 2011-2022 走看看