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的主要内容,如果未能解决你的问题,请参考以下文章

一篇彻底掌握Python 字典(Dictionary)的用法

Python_dict部分功能介绍

Python学习之dict和set

Python 字典(dic)操作

第二周Python笔记 数据类型 字典

python中几种数据类型常用的方法