寫習慣了C#的代碼,在想要將一個字符串'False'轉換爲bool型的時候,很天然的寫了以下的Python代碼:web
看到上面的結果了沒?是True。忽然記起Python中除了''、""、0、()、[]、{}、None爲False以外,其餘的都是True。也就是說上面的'False'就是一個不爲空的字符串,因此結果就爲True了。ui
爲了深刻了解下Python的bool類型,就看了下說明:spa
>>> help(True)
Help on bool object:orm
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|yblog
能夠看到bool是int的子類來的,而且不能夠子類化:繼承
由於bool爲int的子類,因此用1表示True,0表示False:字符串
看到上面2==True是爲false的。可是咱們看下面的代碼:get
咱們看到True被打印出來了,我想這樣是由於if語句會在內部去調用bool()方法:數學
由於bool是繼承自int類型的,因此我猜測在比較的時候最終是會轉換爲0和1來比較的,就像:it
(注:這裏只是猜測,未經證明)
既然bool是繼承自int類型的因此很天然bool類型是支持數學運算的:
最後,我能想到的判斷字符串是否有'False'的就是:
不知道是否有更好的方法呢?