python中字典update
时间: 2023-11-20 07:48:57 浏览: 125
合并多个字典或映射-华为云大数据中台架构分享
Python中的字典update()方法用于更新字典中的键/值对。通过update()方法,我们可以修改已经存在的键对应的值,也可以添加新的键/值对到字典中。
在update()方法的使用中,如果键不存在,则会添加该键/值对到字典中。如果键已经存在,则会更新该键对应的值。
以下是几个使用update()方法的示例:
示例1:
```
account = "optics"
decrypt_passwd = "12345abc"
accountDict = {}
accountDict.update({account:decrypt_passwd})
print(accountDict)
```
输出:{'optics': '12345abc'}
示例2:
```
account = "optics"
decrypt_passwd = "abcdef"
accountDict = {'optics': '12345abc'}
accountDict.update({account:decrypt_passwd})
print(accountDict)
```
输出:{'optics': 'abcdef'}
示例3:
```
D = {'one': 1, 'two': 2}
D.update({'three': 3, 'four': 4}) # 传一个字典
print(D)
D.update(five=5, six=6) # 传关键字
print(D)
D.update([('seven', 7), ('eight', 8)]) # 传一个包含一个或多个元祖的列表
print(D)
D.update(zip(['eleven', 'twelve'], [11, 12])) # 传一个zip()函数
print(D)
D.update(one=111, two=222) # 使用以上任意方法修改存在的键对应的值
print(D)
```
输出:
```
{'one': 1, 'two': 2, 'three': 3, 'four': 4}
{'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6}
{'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6, 'seven': 7, 'eight': 8}
{'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6, 'seven': 7, 'eight': 8, 'eleven': 11, 'twelve': 12}
{'one': 111, 'two': 222, 'three': 3, 'four': 4, 'five': 5, 'six': 6, 'seven': 7, 'eight': 8, 'eleven': 11, 'twelve': 12}
```
阅读全文