题目:
7-4 比萨配料 :编写一个循环,提示用户输入一系列的比萨配料,并在用户输入'quit' 时结束循环。每当用户输入一种配料后,都打印一条消息,说我们会在比萨
中添加这种配料。
7-5 电影票 :有家电影院根据观众的年龄收取不同的票价:不到3岁的观众免费;3~12岁的观众为10美元;超过12岁的观众为15美元。请编写一个循环,在其中询问用
户的年龄,并指出其票价。
7-6 三个出口 :以另一种方式完成练习7-4或练习7-5,在程序中采取如下所有做法。
在while 循环中使用条件测试来结束循环。
使用变量active 来控制循环结束的时机。
使用break 语句在用户输入'quit' 时退出循环。
7-7 无限循环 :编写一个没完没了的循环,并运行它(要结束该循环,可按Ctrl+C,也可关闭显示输出的窗口)。
代码:
#!usr/bin/python # _*_ coding:utf-8 _*_ #披萨配料 prompt = "请输入要添加的配料(按quit退出点餐):" active = True while active: toppings = input(prompt) if toppings == "quit": active = False else: print("我们将会在披萨中添加你想要的%s"%toppings) #电影票 prompt = "请问你多大?" active = True while active: age = int(input(prompt)) if age < 3: print("小于三岁可以免票") elif age>3 and age<12: print("请付十美元") elif age >12: print("请付15美元") #三个出口 #披萨配料2 prompt_1 = "请输入要添加的配料(按quit退出点餐):" active_1 = True while active_1: toppings = input(prompt_1) if toppings == "quit": active_1 = False else: print("我们将会在披萨中添加你想要的%s"%toppings) prompt_2 = "请输入要添加的配料(按quit退出点餐):" active_2 = True while active_2: toppings = input(prompt_2) if toppings == "quit": break print("我们将会在披萨中添加你想要的%s"%toppings) #无限循环 i = 1 while i <10: print(i)