Python 字典处理

# 只更新原有字典,不创建新的字典, 重复会进行覆盖
dict_val = {'one': 1, 'three': 2}
dict_val .update({'three': 3, 'four': 4})
dict_val .update(four=10)

# 

你可能感兴趣的:(Python 字典处理)