《Python编程从入门到实践》第五章414

5-1 条件测试

编写一系列条件测试;将每个测试以及你对其结果的预测和实际结果都打印出来。你编写的代码应类似于下面这样:

car = 'subaru'
print("Is car == 'subaru'? I predict true.")
print(car == 'subaru')

print("\nIs car == 'audi'? I predict False.")
print(car == 'audi')
  • 详细研究实际结果,知道你明白了它为何 为True或False。
  • 创建至少10个测试,且其中结果分别为True和False的测试都至少有5个。

for i in range(5):
    print("Is i == " + str(i) + "? I predict true.")
    print(i == i)
    print("Is i == " + str(~i)+ "? I predict false.")
    print(i == ~i)

5-2 更多的条件测试

你并非只能创建10个测试。如果你想尝试做更多大的比较,可以在编写一些测试,并将他们加入到conditional_test.py中。对于下面列出的各种测试,至少编写一个结果为True和False的测试。

  • 检查两个字符串相等和不等
  • 使用函数lower()的测试。
  • 检查两个数字相等,不等,大于,小于,大于等于,和小于等于。
  • 使用关键字and和or的测试。
  • 测试待定的值是否包含在列表中
  • 测试特定的值是否未包含在列表中。

str1 = 'Hel1o'
str2 = 'hel1o'
print(str1 + ' == ' + str2,str1 == str2)

print(str1.lower() + ' == ' + str2.lower(), str1.lower() == str2.lower())

print(1 == 1)
print(1 != 2)
print(1 > 0)
print(1 < 2)
print(2 >= 2)
print(3 <= 3)
print( 1 == 1 and True)
print(1 != 1 or True)
arr = list('abcde')
print('a' in arr)
print('z' in arr)

5-3 外星人颜色 #1

假设在游戏中刚射杀了一个外星人(人类的暴力倾向吗。。),请创建一个名为alien_color的变量,并将其设置为’green’、’yellow’、或’red’。

  • 编写一条if语句,检查外星人是否是绿色的;如果是,就打印一条消息,指出玩家获得了5个点。
  • 编写整个程序的两个版本,在一个版本中上述测试通过了,而在另一个版本中未通过(未通过测试时没有输出)
alien_color = 'green'


if alien_color == 'green':
    print("You've got 5 points")

alien_color = 'red'


if alien_color == 'green':
    print("You've got 5 points")

5-4 外星人颜色 #2

像练习5-3那样设置外星人的颜色,并比那些一个if-else结构。

  • 如果外星人是绿色的,就打印一条消息,指出玩家因射杀该外星人获得了5个点。
  • 如果外星人不是绿色的,就打印一条消息,指出玩家获得了10个点。
  • 编写这个程序的两个版本,在于给版本状元红执行if代码块,而在另一个版本中执行else代码块。
alien_color = 'green'


if alien_color == 'green':
    print("You've got 5 pts for your killing an alien")
else:
    print("You got 10 pts")


alien_color = 'red'

if alien_color == 'green':
    print("You've got 5 pts for your killing an alien")
else:
    print("You got 10 pts")

5-5 外星人颜色 #3

将练习5-4中的if-else结构改为if-elif-else结构。

  • 如果外星人是绿色的,就打印一条消息,指出玩家获得了5个点
  • 如果外星人是黄色的,就打印一条消息,指出玩家获得了的10个点。
  • 如果外星人是红色的,就打印一条消息,指出玩家获得了15个点。
  • 编写这个程序的三个版本,它们分别在外星人为绿色、黄色和红色时打印一条消息。
alien_color = 'green'


if alien_color == 'green':
    print("You've got 5 pts for your killing an alien")
elif alien_color == 'yellow':
    print("You got 10 pts")
else:
    print("You got 15 pts")


alien_color = 'yellow'

if alien_color == 'green':
    print("You've got 5 pts for your killing an alien")
elif alien_color == 'yellow':
    print("You got 10 pts")
else:
    print("You got 15 pts")


alien_color = 'red'


if alien_color == 'green':
    print("You've got 5 pts for your killing an alien")
elif alien_color == 'yellow':
    print("You got 10 pts")
else:
    print("You got 15 pts")

5-6 人生的不同阶段

设置变量age的值,在编写一个if-elif-else结构,根据age的值判断处于人生的那个阶段。

  • 如果一个人的年龄小于2岁,就打印一条消息,指出他是婴儿
  • 如果一个人的年龄为2(含)~4岁,就打印一条消息,指出他正在蹒跚学步。
  • 如果一个人的年龄为4(含)~13岁,就打印一条消息,指出他是儿童。
  • 如果一个人的年龄为13(含)~20岁,就打印一条消息,指出他是青少年。
  • 如果一个人的年龄为20(含)~65岁,就打印一条消息,指出他是成年人。
  • 如果一个人的年龄超过65(含)岁,就打印一条消息,指出他是老年人。
age = int(input())


if age < 2:
    print("Baby")
elif age < 4:
    print("learning walking")
elif age < 13:
    print("child")
elif age < 20:
    print("adolecent")
elif age < 65:
    print("adult")
else:
    print("elder")

5-7 喜欢的水果

创建一个列表,其中包含你喜欢的水果,再编写一系列独立的if语句,检查列表中是否包含特定的水果。

  • 将该列表命名为favorite_fruites,并在其中包含三种水果。
  • 编写5条if语句,每条都检查某种水果是否包含在列表中,如果包含在列表中,就打印一条消息,如“You really like bananas!”。
fruits = ['strawberry', 'cherry', 'raspberry']
if 'apple' in fruits:
    print("impossible!")

favorite_fruites = fruits

if 'strawberry' in fruits:
    print("You really love " + 'strawberry')
if 'apple' in fruits:
    print("You really love " + 'apple')
if 'banana' in fruits:
    print("You really love " + 'banana')
if 'cherry' in fruits:
    print("You really love " + 'cherry')
if 'blackberry' in fruits:
    print("You really love " + 'blackberry')

5-8 以特殊方式跟管理员打招呼

创建一个至少包含5个用户名的列表,且其中一个用户名为‘admin’。想想你要编写代码,在每个用户登录网站后都要打印一条问候消息。遍历用户名列表,并向每位用户打印一条问候消息。

  • 如果用户名为’admin’,就打印一条特殊的问候消息,如“Hello admin, would you like to see a status report?”。
  • 否则打印一条普通的问候消息,如”Hello Eric, thank you for logging in again”。
users = ['admin', 'bob', 'charry', 'darren', 'emmy']
for user in users:
    if user == 'admin':
        print("Hello admin, would you like to see a status report?")
    else:
        print("Hello " + user + ", thank you for logging in again")

5-9 处理没有用户的情形

在为完成练习5-8编写的程序中,添加一条if语句,检查用户名列表是否为空。

  • 如果为空,就打印消息“We need to find some users!”。
  • 删除列表中的所有用户名,确定将打印正确的消息。
users = ['admin', 'bob', 'charry', 'darren', 'emmy']

for user in users:
    if user == 'admin':
        print("Hello admin, would you like to see a status report?")
    else:
        print("Hello " + user + ", thank you for logging in again")

users.clear()
if not users:
    print("We need to find some users!")

5-10 检查用户名

按下面的说明编写一个程序,模拟网站确保每位用户的用户名都独一无二的方式。

  • 创建一个至少包含5个用户名的列表,并将其命名为current_users。
  • 在创建一个包含五个用户名的列表,将其命名为new_users,并确保其中有一两个用户名也包含在列表current_users中。
  • 遍历列表new_users,对于其中的每个用户名,都检查它是否已被使用。如果是这样,就打印一条消息,指出需要输入别的用户名;否则,就打印一条消息, 指出这个用户名未被使用。
  • 确保比较时不区分大小写;换句话说,如果用户名‘John’已被使用,应拒绝用户名’JOHN’。
current_users = ['admin', 'bob', 'charry', 'darren', 'emmy']
new_users = ['admin', 'bob', 'charie', 'david', 'eric']
def lowerFunc(user):
    return user.lower()
for user in new_users:
    if user.lower() in map(lowerFunc, current_users):
        print("other name is needed")
    else:
        print("unused username")

5-11 序数

序数表示位置,如1st和2nd。大多数序数都以th结尾,只有1、2和3列外。

  • 在一个列表中存储数字1~9.
  • 遍历这个列表。
  • 在循环中使用一个if-elif-else结构,以打印每个数字对应的序数。输出内容应为1st、2nd、3rd、4th、5th、6th、7th、8th和9th,但每个序数都独占一行。
numbers = range(1, 10)
for i in numbers:
    if i == 1:
        print(str(i) + "st")
    elif i == 2:
        print(str(i) + "nd")
    elif i == 3:
        print(str(i) + "rd")
    else:
        print(str(i) + "th")

5-12 设置if语句的格式

审核你在本章中编写的程序,确保正确地设置了条件测试的格式。

5-13自己的想法

与刚拿起本书时相比,现在你是一名能力更强的程序员了。鉴于你对如果在程序中模拟现实情形有了更深入的认识,你可以考虑使用程序来解决一些问题。随着编程技能不断提高,你可能想解决一些我呢提,请将这方面的想法记录下来。想想你可能想编写的游戏、想研究的数据集以及想创建的Web应用程序。

猜你喜欢

转载自blog.csdn.net/qq_36183810/article/details/79623777