Python if语句

Isadora ·
更新时间:2024-11-14
· 797 次阅读

Python Day 4 2020-4-9
Python if语句

条件测试
1.检查是否相等
大多数条件测试都将一个变量的当前值同特定值进行比较。

>>> car = 'bmw' >>> car == 'bmw'

2.检查是否相等时不考虑大小写
在Python中检查是否相等时区分大小写`

>>> car = 'Audi' >>> car.lower() == 'audi' True

3.检查是否不相等
要判断两个值是否不等,可结合使用惊叹号和等号(!=)
4.比较数字
条件语句中可包含各种数学比较,如小于、小于等于、大于、大于等于等

>>> age = 18 >>> age == 18 True

5.检查多个条件
(1)使用and检查多个条件
(2)使用or检查多个条件
6.检查特定值是否包含在列表中
要判断特定的值是否已包含在列表中,可使用关键字in。

>>> requested_toppings = ['mushrooms', 'onions', 'pineapple'] >>> 'mushrooms' in requested_toppings True

7.检查特定值是否不包含在列表中
要判断特定的值是否未包含在列表中,可使用关键字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.")

8.布尔表达式

if语句
1.简单的 if 语句
最简单的if语句只有一个测试和一个操作

age = 19 if age >= 18: print("You are old enough to vote!")

2.if-else 语句

age = 17 if age >= 18: print("You are old enough to vote!") print("Have you registered to vote yet?") else: print("Sorry, you are too young to vote.") print("Please register to vote as soon as you turn 18!")

3.if-elif-else 结构

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.")

3.使用多个 elif 代码块
4.省略 else 代码块
Python并不要求if-elif结构后面必须有else代码块。在有些情况下,else代码块很有用;而在其他一些情况下,使用一条elif语句来处理特定的情形更清晰。
5.测试多个条件

使用 if 语句处理列表
1.检查特殊元素
可在for循环中包含一条if语句

requested_toppings = ['mushrooms', 'green peppers', 'extra cheese'] for requested_topping in requested_toppings: if requested_topping == 'green peppers': print("Sorry, we are out of green peppers right now.") else: print("Adding " + requested_topping + ".") print("\nFinished making your pizza!")

2.确定列表不是空的

requested_toppings = [] if requested_toppings: for requested_topping in requested_toppings: print("Adding " + requested_topping + ".") print("\nFinished making your pizza!") else: print("Are you sure you want a plain pizza?")

3.使用多个列表

available_toppings = ['mushrooms', 'olives', 'green peppers', 'pepperoni', 'pineapple', 'extra cheese'] requested_toppings = ['mushrooms', 'french fries', 'extra cheese'] for requested_topping in requested_toppings: if requested_topping in available_toppings: print("Adding " + requested_topping + ".") else: print("Sorry, we don't have " + requested_topping + ".")

设置 if 语句的格式
PEP 8提供的唯一建议是,在诸如==、>=和<=等比较运算符两边各添加一个空格,这样的空格不会影响Python对代码的解读,而只是让代码阅读起来更容易。

课后练习

5-1 条件测试:编写一系列条件测试;将每个测试以及你对其结果的预测和实际结果都打印出来。你编写的代码应类似于下面这样:
car = ‘subaru’
print(“Is car == ‘subaru’? I predict True.”)
print(car == ‘subaru’)
print("\nIs car == ‘audi’? I predict False.")
print(car == ‘audi’)
(1)详细研究实际结果,直到你明白了它为何为 True 或 False。
(2)创建至少 10 个测试,且其中结果分别为 True 和 False 的测试都至少有 5 个。

5-2 更多的条件测试:你并非只能创建 10 个测试。如果你想尝试做更多的比较,可再编写一些测试,并将它们加入到 conditional_tests.py 中。对于下面列出的各种测试,至少编写一个结果为 True 和 False 的测试。
(1)检查两个字符串相等和不等。
(2)使用函数 lower()的测试。
(3)检查两个数字相等、不等、大于、小于、大于等于和小于等于。
(4)使用关键字 and 和 or 的测试。
(5)测试特定的值是否包含在列表中。
(6)测试特定的值是否未包含在列表中。

5-3 外星人颜色#1:假设在游戏中刚射杀了一个外星人,请创建一个名为alien_color 的变量,并将设置为’green’、‘yellow’或’red’。
(1)编写一条 if 语句,检查外星人是否是绿色的;如果是,就打印一条消息,指出玩家获得了 5 个点。
(2)编写这个程序的两个版本,在一个版本中上述测试通过了,而在另一个版本中未通过(未通过测试时没有输出)。

5-4 外星人颜色#2:像练习 5-3 那样设置外星人的颜色,并编写一个 if-else 结构。
(1)如果外星人是绿色的,就打印一条消息,指出玩家因射杀该外星人获得了 5 个点。
(2)如果外星人不是绿色的,就打印一条消息,指出玩家获得了 10 个点。
(3)编写这个程序的两个版本,在一个版本中执行 if 代码块,而在另一个版本中执行 else 代码块。

5-5 外星人颜色#3:将练习 5-4 中的 if-else 结构改为 if-elif-else 结构。
(1)如果外星人是绿色的,就打印一条消息,指出玩家获得了 5 个点。
(2)如果外星人是黄色的,就打印一条消息,指出玩家获得了 10 个点。
(3)如果外星人是红色的,就打印一条消息,指出玩家获得了 15 个点。
(4)编写这个程序的三个版本,它们分别在外星人为绿色、黄色和红色时打印一条消息。

5-6 人生的不同阶段:设置变量 age 的值,再编写一个 if-elif-else 结构,根据 age的值判断处于人生的哪个阶段。
(1)如果一个人的年龄小于 2 岁,就打印一条消息,指出他是婴儿。
(2)如果一个人的年龄为 2(含)~4 岁,就打印一条消息,指出他正蹒跚学步。
(3)如果一个人的年龄为 4(含)~13 岁,就打印一条消息,指出他是儿童。
(4)如果一个人的年龄为 13(含)~20 岁,就打印一条消息,指出他是青少年。
(5)如果一个人的年龄为 20(含)~65 岁,就打印一条消息,指出他是成年人。
(6)如果一个人的年龄超过 65(含)岁,就打印一条消息,指出他是老年人。

5-7 喜欢的水果:创建一个列表,其中包含你喜欢的水果,再编写一系列独立的 if语句,检查列表中是否包含特定的水果。
(1)将该列表命名为 favorite_fruits,并在其中包含三种水果。
(2)编写 5 条 if 语句,每条都检查某种水果是否包含在列表中,如果包含在列表中,就打印一条消息,如“You really like bananas!”。

5-8 以特殊方式跟管理员打招呼:创建一个至少包含 5 个用户名的列表,且其中一个用户名为’admin’。想象你要编写代码,在每位用户登录网站后都打印一条问候消息。遍历用户名列表,并向每位用户打印一条问候消息。
(1)如果用户名为’admin’,就打印一条特殊的问候消息,如“Hello admin, would you like to see a status report?”。
(2)否则,打印一条普通的问候消息,如“Hello Eric, thank you for logging in again”。

5-9 处理没有用户的情形:在为完成练习 5-8 编写的程序中,添加一条 if 语句,检查用户名列表是否为空。
(1)如果为空,就打印消息“We need to find some users!”。
(2)删除列表中的所有用户名,确定将打印正确的消息。

5-10 检查用户名:按下面的说明编写一个程序,模拟网站确保每位用户的用户名都独一无二的方式。
(3)创建一个至少包含 5 个用户名的列表,并将其命名为 current_users。
(4)再创建一个包含 5 个用户名的列表,将其命名为 new_users,并确保其中有一两个用户名也包含在列表 current_users中。
(5)遍历列表 new_users,对于其中的每个用户名,都检查它是否已被使用。如果是这样,就打印一条消息,指出需要输入别的用户名;否则,打印一条消息,指出这个用户名未被使用。

5-12 设置 if 语句的格式:审核你在本章编写的程序,确保正确地设置了条件测试的格式。

# -*- coding: GBK -*- fruit = 'apple' print("You favorite fruit == 'apple'? I think True.") print(fruit == 'apple') print("\nYou favorite fruit == 'banana'? I think False.") print(fruit == 'banana') food='Rice' print(food == 'rice') print(food == 'Rice') print(food.lower() == 'rice') number = 12 print(number == 12) print(number != 12) print(number > 11) print(number = 11) print(number <= 11) numbers = 14 print(number == 12 and numbers == 14) print(number == 12 and numbers == 13) print(number != 12 or numbers != 14) print(number != 12 or numbers != 13) foods = ['noodles','cake','drinks'] print('cake' in foods) print('banana' in foods) print('cake' not in foods) print('banana' not in foods) alien_color = 'red' if alien_color == 'green': print("Congratulations on your five experience points.") alien_color = 'green' if alien_color == 'green': print("Congratulations on your five experience points.") alien_color = 'red' if alien_color == 'green': print("Congratulations on your five experience points.") else: print("Congratulations on your ten experience points.") alien_color = 'green' if alien_color == 'green': print("Congratulations on your five experience points.") else: print("Congratulations on your ten experience points.") alien_color = 'green' if alien_color == 'green': experience=5 elif alien_color == 'yellow': experience=10 elif alien_color == 'red': experience = 15 print("Congratulations on your "+str(experience)+" experience points.") alien_color = 'yellow' if alien_color == 'green': experience = 5 elif alien_color == 'yellow': experience = 10 elif alien_color == 'red': experience = 15 print("Congratulations on your "+str(experience)+" experience points.") alien_color = 'red' if alien_color == 'green': experience = 5 elif alien_color == 'yellow': experience=10 elif alien_color == 'red': experience = 15 print("Congratulations on your "+str(experience)+" experience points.") age = 23 if age < 2: print("他是婴儿。") elif age < 4: print("他正蹒跚学步。") elif age < 13: print("他是儿童。") elif age < 20: print("他是青少年。") elif age < 65: print("他是成年人。") else: print("他是老年人。") favorite_fruits=['apple','strawberry','litchi'] if 'apple' in favorite_fruits: print("You really like apple!") if 'banana' in favorite_fruits: print("You really like banana!") if 'strawberry' in favorite_fruits: print("You really like strawberry!") if 'litchi' in favorite_fruits: print("You really like litchi!") if 'orange' in favorite_fruits: print("You really like orange!") user_names=['admin','qiyi','qian','ting','yan'] for user_name in user_names: if user_name == 'admin': print("Hello "+user_name+", would you like to see a status report?") else: print("Hello "+user_name.title()+", thank you for logging in again.") del user_names[0:-1] if user_names: print("We need to find some users!") current_users = ['nana','qiyi','qian','ting','yan','hong'] new_users = ['nana','qiyi','Qiyi','yue','lei'] for new_user in new_users: if new_user.lower() in current_users: print("请输入其他用户名!") else: print("该用户名未被使用") ordinals = [1,2,3,4,5,6,7,8,9] for ordinal in ordinals: print(str(ordinal)) for ordinal in ordinals: if ordinal == 1: print(str(ordinal)+"st") elif ordinal == 2: print(str(ordinal)+"nd") elif ordinal == 3: print(str(ordinal)+"rd") else: print(str(ordinal)+"td")
作者:北南娜娜



IF Python if语句

需要 登录 后方可回复, 如果你还没有账号请 注册新账号