webbedwonder 发表于 2022-8-15 01:24:02

求助 python 整型逻辑操作 真假判断

像第三章最后一页的思考题那种(not 1) or (0 and 1) or (3 and 4) or (5 and 6) or (7 and 8 and 9) 我知道false是0 true是1 但是其他整型应该怎么进行逻辑操作呢

liuzhengyuan 发表于 2022-8-15 01:59:25

其他非 0 正整数都为 True

Mraqing 发表于 2022-8-15 02:30:33

除了0和none是false,其他都是true。比如小数1.22、负数-3、字符串‘abc’都是true;数字0,空字符串‘’是false

tommyyu 发表于 2022-8-15 11:13:02

短路逻辑
页: [1]
查看完整版本: 求助 python 整型逻辑操作 真假判断