Python的bool類型

來源:互聯網
上載者:User

寫習慣了C#的代碼,在想要將一個字串'False'轉換為bool型的時候,很自然的寫了如下的Python代碼:

看到上面的結果了沒?是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的子類來的,並且不可以子類化:

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

看到上面2==True是為false的。但是我們看下面的代碼:

我們看到True被列印出來了,我想這樣是因為if語句會在內部去調用bool()方法:

因為bool是繼承自int類型的,所以我猜想在比較的時候最終是會轉換為0和1來比較的,就像:

(註:這裡只是猜想,未經證實)

既然bool是繼承自int類型的所以很自然bool類型是支援數學運算的:

最後,我能想到的判斷字串是否有'False'的就是:

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.