逻辑运算
在程序开发中,通常在判断条件时,会需要同时判断多个条件
只有多个条件都满足,才能够执行后续代码,这个时候需要使用到逻辑运算符
逻辑运算符可以把多个条件按照逻辑进行连接,变成更复杂的条件
Python中的逻辑运算符包括:与and/或or/非not
and
条件1 and 条件2 #两个条件都满足时,返回True,否则返回False
or
条件1 or 条件2 #两个条件只要有一个成立,返回True,否则返回False
not
not 条件1
age = 100 # 要求年龄在0-110之间 if age >= 0 and age <=110: print("年龄正确")
else:
print("年龄不正确")