Python编程从入门到实践第7章习题答案

本文提供Python编程从入门到实践书籍第7章的习题详细解答,涵盖函数、模块和错误处理等主题,帮助读者巩固和深化对Python编程的理解。
摘要由CSDN通过智能技术生成
#7-1汽车租赁
#coding:gbk
#7-1汽车租赁
sorts = input("Please enter the kind of the car")
print('Let me see if I can find you a ' + sorts)

#7-2餐馆订位
number = input("Please enter the number of the catten")
number = int(number)
if number > 8:
	print("Sorry, you need wait a monent!")
else:
	print("There have free seat")
	
#7-3 10的整倍数
#7-4 披萨配料
topping = "Please enter some toppings"
toppings = ''
while toppings != 'quit':                     #先比较
	toppings = input(topping)
	if toppings !='quit':
		print("Please adding some " + toppings) 

#7-5电影票
prompt = 'Please enter your age: '
age = ''
while age != 'quit':
	age = input(prompt)
	if age == 'quit':
		break
	age = int(age)
	if age < 3:
		print("You are free to see the moive!")
	elif age <=12:
		print("Your cost is 10 $!")
	else:
		pr
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值