a=1
b=2
print('a'and'b')
>>> a=1 >>> b=2 >>> print(a and b) 2
因为 and 为与计算,必须2个条件都为TURE才返回TURE,当a为 ture 时,取决于b,所以返回b.