解释一下python中的逻辑运算符 python中有三个逻辑运算符:and、or、notprint(False and True)#Falseprint(7<7 or True)#Trueprint(not 2==2)#False转载于:https://www.cnblogs.com/z-x-y/p/9908854.html python 2023-11-21 45 点赞 0 评论 68 浏览