以下字典fruits中是某水果店现有的水果报价,假设此水果店又新进了一种水果,将该种水果及其报价添加到字典fruits中。 新进的水果及其报价由键盘输入,以逗号分隔,然后输出水果店所有水果及其报价。完善代码。 输入输出示例: 示例1 输入:杨桃,15 输出: apple:10 mango:12 durian:20 banana:5 杨桃:15 示例2 输入:草莓,30 输出: apple:10 mango:12 durian:20 banana:5 草莓:30
时间: 2024-02-25 12:55:25 浏览: 212
水果品质近红外检测技术的研究现状与发展
4星 · 用户满意度95%
以下是完整代码:
```python
fruits = {'apple': 10, 'mango': 12, 'durian': 20, 'banana': 5}
new_fruit, price = input().split(',')
fruits[new_fruit] = int(price)
for fruit, price in fruits.items():
print(fruit + ':' + str(price), end=' ')
```
输入新进的水果及其报价后,使用字典的键值对添加新的水果及其报价,然后使用 for 循环遍历字典输出所有水果及其报价。注意要将输入的价格转换为整数类型。
阅读全文