以下字典fruits中是某水果店现有的水果报价,假设此水果店又新进了一种水果, 将该种水果及其报价添加到字典fruits中。 新进的水果及其报价由键盘输入,以逗号分隔, 然后输出水果店所有水果及其报价。完善代码。 fruits = {"apple":10,"mango":12,"durian":20,"banana":5} a,b =(input()).split(',')#请输入新进的水果名称及报价 fruits[a]=int(b) for m in fruits: print('{}:{}'.format(m,______②_____))
时间: 2024-03-03 10:46:55 浏览: 89
水果分类数据集 fruits分类数据集.rar
5星 · 资源好评率100%
以下是完整代码:
```python
fruits = {"apple":10, "mango":12, "durian":20, "banana":5}
a, b = input("请输入新进的水果名称及报价,以逗号分隔:").split(',')
fruits[a] = int(b)
for m, n in fruits.items():
print('{}:{}'.format(m, n))
```
输入格式为:新进水果名称,价格,例如:草莓,30
输出格式为:水果名称:价格,每个水果以空格隔开,例如:apple:10 mango:12 durian:20 banana:5 草莓:30
注意要将价格转换为整数类型。代码中还添加了一个输入提示。
阅读全文