摘要: 回顾逻辑运算: print(6 or 2 > 1) print(0 or 5 < 4) print(5 < 4 or 3) print(3 and 2 > 1) print(0 and 3 > 1) print(2 > 1 and 3) print(3 > 1 and 0) # 要满足两边都是真才是 阅读全文
posted @ 2020-06-08 22:21 安~♥ 阅读(153) 评论(0) 推荐(0) 编辑