and 或者or的使用技巧:
同真为真
print(2 and 0) :0
print(2 and 4) :4
print(0 and 3) :0
一真为真
print(2 or 0) :2
print(2 or 7) :2
print(0 or 5) :5