每个if语句都以一个值为TRUE或者FALSE的表达式做核心。
1.可能用到的判断表达式
numbers = (2,4,6,8,10,11,12,13)
if numbers[1]==5: #注意判断英文时大小写不一致会判否
print("YES")
else:
print("NO")
numbers = (2,4,6,8,10,11,12,13)
if numbers[1]!=5: #不相等判断
print("YES")
numbers = (2,4,6,8,10,11,12,13)
if 5 in numbers: #检测某个元素是否在列表里,not in检测是否不在
print("YES")
else:
print("NO")
也可以进行数学判断,大于,小于等。
同样的可以使用and,or检查多个条件
2.涉及多个条件的判断,使用if-elif-else,elif判断单一条件很好用,而else则不是必要的。如果判断条件是独立事件就需要单独的if语句。
age = 20
if age < 8:
print("幼儿园")
elif age<14:
print("小学")
elif age<18:
print("中学")
else:
print("大学")