or:

第一个为真就往后面看啦。

第一个为假,还仍然往后面看。

and:

第一个为真,仍然会往后面看。

第一个为假,不会往后面看。

代码:

>>> 0 or 0
0
>>> 0 or 10
10
>>> 10 or 0
10
>>> 10 or 50
10
>>> 0 and 0
0
>>> 0 and 10
0
>>> 10 and 10
10
>>> 10 and 100
100
>>> 10 and 0
0
>>>

直接上图:

python里面and和or用法_python里面and和or用法