譯過來就是,可簡化比較鏈:spa
if a >= 0 and a <= 9:
可簡化爲:code
if 0 <= a <= 9:
就像咱們的數學表達式同樣。顯然這種情形只適用於 and 的情形。blog
and
if score > 100 and score < 0:
會被簡化爲:數學
if 100 < score < 0:
顯然這也是一個永假式,不怪 PyCharm 不夠智能,只是你把表達式寫錯了:class
if score > 100 or score < 0: