上一星期只点了保存忘记点击发布造成忘记更新,现在补出
#7-4 print('please input immigrades of pizza: ') while(1): msg=input() if(msg=='quit'): break print('we will add '+msg+' into pizza') #7-5 print("input your children's age:") while(1): age=input() if(age<=3): print('free') elif(age<=12): print('$10') elif(age<=15): print('$15') elif(age=='quit'): break #7-6 while True: print(6)
本文提供了几个Python编程练习示例,包括连续输入披萨口味并记录、根据年龄计算票价以及一个无限循环打印数字6的示例。
243

被折叠的 条评论
为什么被折叠?



