Python dict get items pop update
Posted Presley
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python dict get items pop update相关的知识,希望对你有一定的参考价值。
一、get方法
dict = {‘k1‘:1,‘k2‘:2}
dict.get(‘k1‘)
1
dict.get(‘k2‘)
2
dict.get(‘k3‘)
None
dict.get(‘k3‘,‘wohaoshuai‘)
wohaoshuai
(如果k3不存在那么就设置为wohaoshuai)
二、items
dict.items()
dict_items([(‘a‘, 1), (‘b‘, 2)])
三、pop
dict.pop(‘k1‘)
dict
{‘k2‘:2}
四、update
d2 = {‘k3‘:3}
dict.update(d2)
dict
{‘k1‘:1,‘k2‘:2,‘k3‘:3}
以上是关于Python dict get items pop update的主要内容,如果未能解决你的问题,请参考以下文章