标签: python dictionary input
我需要通过用户输入的整数来增加Python字典中的值-如何简单地做到这一点?谢谢
答案 0 :(得分:0)
x = {'a': 1} y = int(input()) x['a'] += y print(x['a'])