4.if语句--《Python编程:从入门到实践》
4.1 检查多个条件
1.使用 and 检查多个条件
2.使用 or 检查多个条件
4.2 检查特定值是否包含在列表中
使用 in 检查特定值是否在列表中
>>> requested_toppings = ['mushrooms', 'onions', 'pineapple']
>>> 'mushrooms' in requested_toppings
True
4.3 检查特定值是否不包含在列表中
使用 not in 检车特定值是否不包含在列表中
banned_users = ['andrew', 'carolina', 'david']
user = 'marie'
if user not in banned_users:
print(user.title() + ", you can post a response if you wish.")
4.4 if 与 else
和C++类似。注意:elif 就是 else if
age = 12
if age < 4:
print("Your admission cost is $0.")
elif age < 18:
print("Your admission cost is $5.")
else:
print("Your admission cost is $10.")