首页 > 代码库 > 字典操作

字典操作

 字典一种key - value 的数据类型,使用就像我们上学用的字典,通过笔划、字母来查对应页的详细内容。

student = {
‘user‘:‘tangbo‘
‘user1‘:‘renchuan‘
‘user2‘:‘wangsi‘

}
字典的特性:
dict是无序的
key必须是唯一的,so 天生去重.

添加:
student = {
‘user‘: ‘tangbo‘,
‘user1‘: ‘renchuan‘,
‘user2‘:‘wangsi‘,
}
student[‘user03‘] = ‘bowen‘
print(student)
运行结果:{‘user03‘: ‘bowen‘, ‘user2‘: ‘wangsi‘, ‘user‘: ‘tangbo‘, ‘user1‘: ‘renchuan‘}

字典操作