Python 3 - 字典 update() 方法
-
描述
方法update()将字典 dict2 的键值对添加到 dict 中。此函数不返回任何内容。 -
句法
以下是语法update()方法 -dict.update(dict2)
-
参数
dict2− 这是要添加到dict 中的字典。 -
返回值
此方法不返回任何值。 -
例子
以下示例显示了 update() 方法的用法。#!/usr/bin/python3 dict = {'Name': 'Alex', 'Age': 7} dict2 = {'Sex': 'female' } dict.update(dict2) print ("updated dict : ", dict)
-
结果
当我们运行上面的程序时,它会产生以下结果 -updated dict : {'Sex': 'female', 'Age': 7, 'Name': 'Alex'}