字典操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字典操作相关的知识,希望对你有一定的参考价值。
字典一种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‘}
以上是关于字典操作的主要内容,如果未能解决你的问题,请参考以下文章