带有示例的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'}