带有示例的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 送给学长毕业祝福语简短