python字典中的update()函数含义
Python 字典 update() ⽅法⽤于更新字典中的键值对
可以修改存在的键值对应的值,也可以添加新的键值对到字典中
语法
d.update(e)
e:可能是字典,也可能是键值对序列。
使⽤⽅法
d = {'one':1,'two':2}
# 传⼊⼀个字典
d.update({'one':3,'two':4})
print(d)
{'one': 3, 'two': 4}
d = {'one':1,'two':2}
d.update({'three':3,'four':4})
print(d)
{'four': 4, 'one': 1, 'three': 3, 'two': 2}
d = {'one':1,'two':2}
# 传⼊关键字
d.update(five=5,six=6)
print(d)
{'five': 5, 'one': 1, 'six': 6, 'two': 2}
d = {'one':1,'two':2}
update是什么#传⼊⼀个包含元组的列表
d.update([('seven',7),('eight',8)])
print(d)
{'eight': 8, 'one': 1, 'seven': 7, 'two': 2}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论