这篇文章主要介绍了python中true+false的值,具有一定借鉴价值,需要的朋友可以参考下。希望大家阅读完这篇文章后大有收获,下面让小编带着大家一起了解一下。 Source code download: 本文相关源码 在布尔判断中,除了0之外,其他任何数都为True print(0 and 5) # 0 print(1 and 5) # 5 print(0 or 6) # 6 print(1 or 6) # 1 在布尔运算中,False对应的是0,True对应是1。 print(True - False) # 1 print(False - True) # -1