带有示例的Python字典update()方法
词典update()方法
update()方法用于通过将新项目插入字典来更新字典。
语法:
dictionary_name.setdefault(iterable)
Parameter(s):
可迭代–表示要在字典中插入的Iterbale对象或字典。
返回值:
它什么也没返回。
示例
#带有示例的Python字典update()方法
#字典声明
student = {
"roll_no": 101,
"name": "Shivang",
"course": "B.Tech",
"perc" : 98.5
}
#印刷词典
print("data of student dictionary...")
print(student)
#插入项目
student.update({'city' : 'Indore'})
#印刷词典 after update()
print("data of student dictionary after update()...")
print(student)
#插入多个项目
student.update({'city' : 'Indore', 'address' : 'Tech park'})
#印刷词典 after update()
print("data of student dictionary after update()...")
print(student)输出结果
data of student dictionary...
{'roll_no': 101, 'name': 'Shivang', 'course': 'B.Tech', 'perc': 98.5}
data of student dictionary after update()...
{'roll_no': 101, 'name': 'Shivang', 'course': 'B.Tech', 'perc': 98.5, 'city': 'Indore'}
data of student dictionary after update()...
{'roll_no': 101, 'name': 'Shivang', 'course': 'B.Tech', 'perc': 98.5, 'city': 'Indore', 'address': 'Tech park'}热门推荐
10 小红书平安祝福语简短
11 生日祝福语大全女孩简短
12 收生日红包祝福语 简短
13 领证幽默祝福语简短
14 法考面试祝福语简短
15 老哥出门祝福语简短语
16 送灯祝福语简短独特
17 幼儿狗年祝福语大全简短
18 好听的元旦简短祝福语