标签:class int IV nbsp 运算 als style bsp pre
在python中,可以对布尔值进行加减法运算.
True会被看做 1 , False会被看做 0 :
a = True b = False print a + a # 2 print a - a # 0 print a + b # 1 print a - b # 1
标签:class int IV nbsp 运算 als style bsp pre
原文地址:https://www.cnblogs.com/liulangmao/p/9162057.html