python---字典

Posted 水木,年華

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python---字典相关的知识,希望对你有一定的参考价值。

●字典的含义:


●字典的创建

''字典的建方式'''
score='张三':100,'李四':98,'王五':45
print(score)
print(type(score))

'''第二种创建dict()'''
student=dict(name='jack',age=20)
print(student)

'''空字典'''
d=
print(d)

●字典的常用操作

①字典元素的获取

'''获取字典的元素'''
score='张三':100,'李四':98,'王五':45
'''第一种方式,使用[]'''
print(score['张三'])
#print(score['陈六']) #KeyError: '陈六'

'''第二种方式,使用get()方法'''
print(score.get('张三'))
print(score.get('陈六')) #None
print(score.get('麻七',99)) #99是查找麻七时不存在提供的默认值
100
100
None
99

②key的判断

score='张三':100,'李四':98,'王五':45
'''key的判断'''
print('张三' in score)
print('张三' not in score)
'''删除指定的key-value对'''
del score['张三']
#score.clear() #清空字典的元素
'''新增'''
print(score)
score['陈六']=98
print(score)
'''修改'''
score['陈六']=100
print(score)
True
False
'李四': 98, '王五': 45
'李四': 98, '王五': 45, '陈六': 98
'李四': 98, '王五': 45, '陈六': 100

③获取字典视图的方法

score='张三':100,'李四':98,'王五':45
#获取所有的key
keys=score.keys()
print(keys)
print(type(keys))
print(list(keys)) #将所有的key组成的视图转成列表
#获取所有的value
values=score.values()
print(values)
print(type(values))
print(list(values))
#获取所有的key-value对
items=score.items()
print(items)
print(type(items))
print(list(items)) #转换之后的列表元素是由元组组成()
dict_keys(['张三', '李四', '王五'])
<class 'dict_keys'>
['张三', '李四', '王五']
dict_values([100, 98, 45])
<class 'dict_values'>
[100, 98, 45]
dict_items([('张三', 100), ('李四', 98), ('王五', 45)])
<class 'dict_items'>
[('张三', 100), ('李四', 98), ('王五', 45)]

④字典元素的遍历

#字典元素的遍历
for item in score:
    print(item,score[item])
    print(item,score.get(item))
张三 100
张三 100
李四 98
李四 98
王五 45
王五 45

④字典的特点

⑤字典生成式


items=['Fruits','Books','Others']
prices=[96,78,85]
d=items.upper():price for items,price in zip(items,prices) #upper()表示用大写表示
print(d)

'FRUITS': 96, 'BOOKS': 78, 'OTHERS': 85

小结

以上是关于python---字典的主要内容,如果未能解决你的问题,请参考以下文章

Python笔记:字典类属性对象实例继承

python-基础 列表 集合 字典

python3将两个列表合并成字典的三种方法

python-基础 列表 集合 字典 文件处理

python字典推导式

python的字典为什么输出只有一个字符?