python and or

python中and和or的用法html

From 《dive into python》python

python 中的and從左到右計算表達式,若全部值均爲真,則返回最後一個值,若存在假,返回第一個假值。安全

or也是從左到有計算表達式,返回第一個爲真的值。ide

IDLE 1.2.4
>>>'a'and'b'
'b'
>>>''and'b'
''
>>>'a'or'b'
'a'
>>>''or'b'
'b'
相似三目表達式的用法:bool? a : b
>>> a ='first'
>>> b ='second'
>>>1and a or b   # 等價於 bool = true時的狀況
'first'
>>>0and a or b   # 等價於 bool = false時的狀況
'second'
>>> a =''
>>>1and a or b   # a爲假時,則出現問題
'second'
>>>(1and[a]or[b])[0]# 安全用法,由於[a]不可能爲假,至少有一個元素
''
>>>
相關文章
相關標籤/搜索