python中字典update函数如何用 python字典update怎么用

主机教程 建站分享 2年前 (2022-10-21) 189次浏览

文章摘要:python中字典update函数如何用 python字典update怎么用

在python中使用字典update函数的方法 update:update()函数的作用是将字典dict2的键 […]

在python中使用字典update函数的方法

update:update()函数的作用是将字典dict2的键或值对更新到dict中。

update()函数语法:

dict.update(dict2)

参数:

dict2:添加到指定字典dict里的字典。

update()函数使用方法:

dict = {'Name': 'Zara', 'Age': 7}

dict2 = {'Sex': 'female' }

dict.update(dict2)

print "Value : %s" % dict

输出结果为:

Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中字典update函数如何用 python字典update怎么用
文章链接:http://www.7966.org/post/15300.html
转载请注明出处

喜欢 (0)