与(and)
两个条件同时成立才算成立
age=100
if age>=0 and age<=120:
print("年龄正确")
else:
print("年龄不正确")
或(or)
两个条件成立一个就算成立
python_sorce=50
c_sorce=50
if python_sorce >= 60 or c_sorce >= 60:
print("成绩合格")
else:
print("成绩不合格")
非(not)
不成立就是成立
成立就是不成立
is_employee=True
if not is_employee:
print("给我滚出去")



