摘要: 昨日学习内容回顾 三大逻辑运算符 1.逻辑运算符and 和连接的多个条件必须同时满足结果,否则就是不成立 print (1<2 and 2>1 and 3<9)# True or 或 连接的多个条件只要满足一个即可。 print(1>2 or 5>1) # True not 对条件取反值print( 阅读全文
posted @ 2021-08-15 15:39 查无此人cxc 阅读(59) 评论(0) 推荐(0)