Python 字典 Dictionary update()方法
Python 字典 Dictionary update()方法
Python 字典(Dictionary) update() 函数把字典dict2的键/值对更新到dict里。
语法
update()方法语法:
dict.update(dict2)
参数
- dict2 -- 添加到指定字典dict里的字典。
返回值
该方法没有任何返回值。
实例
以下实例展示了 update()函数的使用方法:
实例
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} dict2 = {'Sex': 'female' } dict.update(dict2) print "Value : %s" % dict
以上实例输出结果为:
Value : {'Age': 7, 'Name': 'Zara', 'Sex': 'female'}
相关文章
- Python 循环语句
- Python 模块
- Python OS 文件/目录方法
- Python XML 解析
- Python 队列
- Python 大O符号
- Python3 基础语法
- Python3 文件读写
- Python MongoDB 数据库连接 - PyMongo 驱动
- Python log() 函数
- Python shuffle() 函数
- Python File close() 方法
- Python os.fchown() 方法
- Python os.fpathconf() 方法
- Python os.lchflags() 方法
- Python os.lseek() 方法
- Python os.utime() 方法
- Python istitle()方法
- Python upper()方法
- Python time asctime()方法