Python编程-从入门到实践(第2版)第七章练习代码
练习7-1:汽车租赁
编写一个程序, 询问用户要租赁什么样的汽车, 并打印一条消息, 如“Let me see if I can find you a Subaru”。
# 用户输入汽车
car = input("What kind of car you wanna find?")
# 输出
print(f"Let me see if i can find you a {car.title()}.") 练习7-2:餐馆订位
编写一个程序, 询问用户有多少人用餐。 如果超过8人, 就打印一条消息, 指出没有空桌; 否则指出有空桌。# 提示用户输入人数
message = input('How many people will come to the hotel? ')
# 将字符串转化为整数
message = int(message)
# 进行if判断
if message > 8:
print("Sorry, there is no free table.")
else:
print("Yes, we have free table for you.") 练习7-3:10的整数倍
让用户输入一个数字, 并指出这个数字是否是10的整数倍。# 让用户输入整数
num = input("Please enter a number.")
# 将字符串转化为整型
num = int(num)
# 进行if判断
if num % 10 == 0:
print('Yes, it is.')
else:
print('No, it not is.') 练习7-4:比萨配料
编写一个循环, 提示用户输入一系列的比萨配料, 并在用户输入'quit' 时结束循环。 每当用户输入一种配料后,都打印一条消息, 说我们会在比萨中添加这种配料。
# 设置一个标志
active = True
# 利用标志进入循环
while active:
ingredient = input("Please enter what ingredient which you wanna add in your pizza. ")
if ingredient == 'quit':
break
else:
print(f'We will add {ingredient.title()} in your pizza.') 练习7-5:电影票
有家电影院根据观众的年龄收取不同的票价: 不到3岁的观众免费; 3~12岁的观众为10美元; 超过12岁的观众为15美元。请编写一个循环, 在其中询问用户的年龄, 并指出其票价。
# 设置一个标志
active = True
# 进入While循环
while active:
# 输入年龄,赋值给age
age = input('Please enter your age: ')
# 将age从字符串转化为数值
age = int(age)
#进行年龄大小判断
if age < 3:
print('Your ticket fee is free')
elif (age >= 3) and (age <= 12):
print('Your ticket fee is $10')
else:
print('Your ticket fee is $15') 练习7-6:三种出路
以另一种方式完成练习7-4或练习7-5, 在程序中采取如下所有做法。
- 在while 循环中使用条件测试来结束循环。
- 使用变量active 来控制循环结束的时机。
- 使用break 语句在用户输入'quit' 时退出循环。
# 改造7-5
# 建立标志
active = True
# 建立循环
while active:
# 设置年龄
age = input('Please tell me your age. If you wanna quit, please enter "quit".')
# 判断是否输入quit
if age == 'quit':
break
else:
# 将字符串age转化为数值age
age = int(age)
# 进行年龄大小判断
if age< 3:
print('Your ticket is free!')
# 通过改变active的bool值来退出循环
active = False
elif age >= 3 and age <= 12:
print('Your ticket fee is $10.')
active = False
elif age > 12:
print('Your ticket fee is $15.')
active = False 练习7-7:无限循环
编写一个没完没了的循环, 并运行它(要结束该循环, 可按Ctrl +C, 也可关闭显示输出的窗口) 。
# 创建一个数 num = 0 # 创建循环 while True: num += 1 print(num)
练习7-8:熟食店
创建一个名为sandwich_orders 的列表, 在其中包含各种三明治的名字; 再创建一个名为finished_sandwiches 的空列表。# 创建sandwich_orders列表
sandwich_orders = ['tuna sandwich', 'apple sandwich', 'bacon sandwich']
# 创建空的finished_sandwichs列表
finished_sandwichs = []
while sandwich_orders:
current_sandwich = sandwich_orders.pop()
# 打印消息
print(f"I made your {current_sandwich.title()}.")
# 添加current_sandwich到空列表中
finished_sandwichs.append(current_sandwich)
# 循环列表,输出sandwich
for sandwich in finished_sandwichs:
print(sandwich.title()) 练习7-9:五香烟熏牛肉卖完了
使用为完成练习7-8而创建的列表sandwich_orders ,并确保'pastrami' 在其中至少出现了三次。 在程序开头附近添加这样的代码: 打印一条消息, 指出熟食店的五香烟熏牛肉卖完了;再使用一个while 循环将列表sandwich_orders 中的'pastrami' 都删除。 确认最终的列表finished_sandwiches 中不包含'pastrami' 。# 创建sandwich_orders列表,保证其中pastrami出现至少三次
sandwich_orders = ['tuna sandwich', 'pastrami','apple sandwich', 'pastrami', 'bacon sandwich', 'pastrami']
# 打印消息通知pastrami已经卖完了
print('Sorry, pastrami are all sold out.')
# 利用循环删除pastrami
while 'pastrami' in sandwich_orders:
sandwich_orders.remove('pastrami')
# 再次打印列表确认
print(sandwich_orders) 练习7-10:梦想的度假胜地
编写一个程序, 调查用户梦想的度假胜地。使用类似于“If you could visit one place in the world, where would you go?”的提示, 并编写一个打印调查结果的代码块.
# 创建一个空列表
dream_places = []
# 创建一个标志
active = True
# 创建一个循环
while active:
# 提示用户输入地点
place = input('If you could visit one place in the world, where would you go? And you could type in "quit" to end.')
# 进行if语句判断
if place == 'quit':
break
else:
# 将地点添加到dream_places列表中
dream_places.append(place.title())
# 循环结束后,输出dream_places列表
print(dream_places) 