带有示例的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 兄妹拍照祝福语简短的话