最佳答案
如何查找字典中的键是否已设置为非none值?
如果已经有一个值,我想增加值,否则设置为1:
my_dict = {}
if my_dict[key] is not None:
my_dict[key] = 1
else:
my_dict[key] += 1