如何通过用户输入增加Python字典中的值?

时间:2019-09-21 16:04:13

标签: python dictionary input

我需要通过用户输入的整数来增加Python字典中的值-如何简单地做到这一点?谢谢

Image of problem

1 个答案:

答案 0 :(得分:0)

x = {'a': 1}

y = int(input())

x['a'] += y     

print(x['a'])