以下字典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-05 18:04:41 浏览: 118
水果数据集fruits
可以使用以下Python代码实现:
```python
fruits = {'apple': 10, 'mango': 12, 'durian': 20, 'banana': 5}
# 从键盘输入新水果及其报价
new_fruit, price = input("请输入新水果及其报价,以逗号分隔:").split(',')
price = int(price)
# 将新水果及其报价添加到字典中
fruits[new_fruit] = price
# 输出所有水果及其报价
for fruit, price in fruits.items():
print(fruit + ':' + str(price))
```
示例1 输入:
```
请输入新水果及其报价,以逗号分隔:杨桃,15
```
输出:
```
apple:10
mango:12
durian:20
banana:5
杨桃:15
```
示例2 输入:
```
请输入新水果及其报价,以逗号分隔:草莓,30
```
输出:
```
apple:10
mango:12
durian:20
banana:5
草莓:30
```
阅读全文