时间:2021-05-22
前言
Python 字典 update()方法用于更新字典中的键/值对,可以修改存在的键对应的值,也可以添加新的键/值对到字典中。
语法格式
d.update(e)参数说明
将e中键-值对添加到字典d中,e可能是字典,也可能是键-值对序列。详见实例。
返回值
该方法没有任何返回值。
实例
以下实例展示了 update() 方法的使用方法:
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(([‘nice',9],[‘ten',10]))#传一个包含一个或多个列表的元组 print(d)d.update(zip([‘eleven','twelve'],[11,12])) # 传一个zip()函数 print(d)d.update(one=111,two=222) # 使用以上任意方法修改存在的键对应的值 print(d)以上实例输出结果为:
{‘one': 1, ‘four': 4, ‘three': 3, ‘two': 2} {‘one': 1, ‘four': 4, ‘three': 3, ‘five': 5, ‘two': 2, ‘six': 6} {‘seven': 7, ‘one': 1, ‘four': 4, ‘three': 3, ‘five': 5, ‘two': 2, ‘six': 6, ‘eight': 8} {‘seven': 7, ‘one': 1, ‘four': 4, ‘three': 3, ‘ten': 10, ‘five': 5, ‘nice': 9, ‘two': 2, ‘six': 6, ‘eight': 8} {‘one': 1, ‘four': 4, ‘three': 3, ‘twelve': 12, ‘ten': 10, ‘seven': 7, ‘six': 6, ‘eleven': 11, ‘two': 2, ‘nice': 9, ‘five': 5, ‘eight': 8} {‘one': 111, ‘four': 4, ‘three': 3, ‘twelve': 12, ‘ten': 10, ‘seven': 7, ‘six': 6, ‘eleven': 11, ‘two': 222, ‘nice': 9, ‘five': 5, ‘eight': 8}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android中onSaveInstanceState()使用方法详解覆盖onSaveInstanceState方法,并在onCreate中检测savedIns
Python中格式化format()方法详解Python中格式化输出字符串使用format()函数,字符串即类,可以使用方法;Python是完全面向对象的语言,
详解python中executemany和序列的使用方法一代码importsqlite3persons=[("Jim","Green"),("Hu","jie"
本文实例讲述了python栈的基本定义与使用方法。分享给大家供大家参考,具体如下:#-*-coding:utf-8-*-#!python3#在桟的设计中,我们需
本文实例讲述了python中@property和property函数常见使用方法。分享给大家供大家参考,具体如下:1、基本的@property使用,可以把函数当