python 字典操作

Posted

tags:

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

 

1.查询
2.修改
3.删除
4.增加
5.清空

例如:
dict1 = { ‘k1‘:‘jin‘,‘k2‘:123, ‘k3‘:[‘tong‘,200]}

1.1字典查询有哪些键
print(dict1.keys())
dict_keys([‘k2‘, ‘k1‘, ‘k3‘])

1.2字典查询值
print(dict1.values())
dict_values([123, ‘jin‘, [‘tong‘, 200]])

1.3 根据key 查value
print(dict1["k1"])
print(dict1["k1"]) #在查询不到时会报错
print(dict1.get("k3"))
if ‘k3‘ in dict1:
print("true")


2.字典修改
dict1[‘k1‘] = ‘JIN‘
print(dict1.get("k1"))
输出:JIN

3、删除的三种方法
3.1 pop 方法
dict1.pop(‘k1‘) #常用方法
print(dict1)
输出:{‘k3‘: [‘tong‘, 200], ‘k2‘: 123}

3.2 del 方法
del dict1[‘k1‘]
print(dict1)
{‘k3‘: [‘tong‘, 200], ‘k2‘: 123}
输出:{‘k3‘: [‘tong‘, 200], ‘k2‘: 123}

3.3 popitem 方法
dict1.popitem()
print(dict1)

输出:{‘k1‘: ‘jin‘, ‘k2‘: 123}

4.增加

dict1[‘k4‘] = ‘Li‘
print(dict1)

{‘k3‘: [‘tong‘, 200], ‘k1‘: ‘jin‘, ‘k2‘: 123, ‘k4‘: ‘Li‘}

5.清空
dict1.clear()

 































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

python之字典操作

Python 字典操作

python中字典的操作

python字典的基本操作

python 字典操作提取key,value

Python字典操作