Python 输出顺序问题(for, if)
各位大神好看大蛇的书,自己想到的一个例子(书76页,)
点比萨, 可以提供的添加有火腿和芝士
客户要求的是 蘑菇,芝士,青椒,火腿
想要输出店铺可以提供的topping的要素
available_toppings = ['火腿','芝士']
requested_toppings = ['蘑菇','芝士','青椒','火腿']
for requested_topping in requested_toppings:
if requested_topping in available_toppings:
print(f'添加{requested_topping}')
else:
print(f'对不起, {requested_topping}现在没有')
print('\n您的比萨已经搞定!')
输出结果为
对不起, 蘑菇现在没有
添加芝士
对不起, 青椒现在没有
添加火腿
您的比萨已经搞定!
问题
1. 请问我这么做对吗?
2. 如何让下面输出的顺序为 ,添加的在一起, 没有库存的在一起
例如:
添加芝士
添加火腿
对不起, 蘑菇现在没有
对不起, 青椒现在没有
您的比萨已经搞定!
谢谢
用2个列表先把内容保存起来,最后一起输出。 ba21 发表于 2022-3-27 11:57
用2个列表先把内容保存起来,最后一起输出。
请问代码怎么做呢?能说具体一点吗? koreabao 发表于 2022-3-27 12:01
请问代码怎么做呢?能说具体一点吗?
available_toppings = ['火腿','芝士']
requested_toppings = ['蘑菇','芝士','青椒','火腿']
y=[]
n=[]
for requested_topping in requested_toppings:
if requested_topping in available_toppings:
y.append(requested_topping)
else:
n.append(requested_topping)
for i in y:
print(f'添加{i}')
for i in n:
print(f'对不起, {i}现在没有')
print('\n您的比萨已经搞定!')
ba21 发表于 2022-3-27 12:05
谢谢老板, 刚弄了两个空表格出来,哈哈 ,太感谢了, 谢谢您给的思路
页:
[1]