bool()方法使用標(biāo)準(zhǔn)真值測試過程將值轉(zhuǎn)換為布爾值(True或False)。
bool的語法是:
bool([value])
將值傳遞給bool()不是必需的。如果不傳遞值,則bool()返回False。
通常,bool()使用單個參數(shù)值。
bool()返回:
False 如果值被省略或為false
True 如果值為true
以下值在Python中被視為false:
None
False
任何數(shù)字類型的零。例如,0,0.0,0j
空序列。例如(),[],''。
空映射。例如,{}
具有__bool__()或__len()__方法返回0或False
除這些值以外的所有其他值均視為“ true”。
test = [] print(test,'is',bool(test)) test = [0] print(test,'is',bool(test)) test = 0.0 print(test,'is',bool(test)) test = None print(test,'is',bool(test)) test = True print(test,'is',bool(test)) test = 'Easy string' print(test,'is',bool(test))
運行該程序時,輸出為:
[] is False [0] is True 0.0 is False None is False True is True Easy string is True