前提
练习7-8熟⾷店
创建⼀个名为sandwich_orders 的列表,在其中包含各种三明治的名字;再创建⼀个名为finished_sandwiches 的空列表。遍历列 表
sandwich_orders ,对于其中的每种三明治,都打印⼀条消息,如I made your tuna sandwich ,并将其移到列表finished_sandwiches 。所有三明治都制作好后,打印⼀条消息,将这些三明治列出来。练习7-9五⾹烟熏⽜⾁(pastrami)卖完了
使⽤为完成练习7-8⽽创建的列表sandwich_orders ,并确保'pastrami' 在其中⾄少出现了三次。在程序开头附近添加 这样的代码:打印⼀条消息,指出熟⾷店的五⾹烟熏⽜⾁卖完了;再使⽤⼀个while 循环将列表sandwich_orders 中的'pastrami' 都删除。确认最终的列 表finished_sandwiches 中不包含'pastrami' 。
1 sandwich_orders = ['tuna sandwich', 'pastrami', 'ham sandwich', 'pastrami', 'beef sandwich', 'pastrami' ] 2 finished_sandwich = [] 3
4 print(\"sorry, pastrami is sold out\") 5
6 active = True 7 while active:
8 while 'pastrami' in sandwich_orders: 9 sandwich_orders.remove('pastrami')10 sandwich = sandwich_orders.pop()11 print(f\"I made your {sandwich}\")
12 finished_sandwich.append(sandwich)13 if sandwich_orders == []:14 active = False15
16 print(finished_sandwich)
因篇幅问题不能全部显示,请点此查看更多更全内容