Python字典增删操作技巧简述

  Python编程语言是一款比较容易学习的计算机通用型语言。对于初学者来说,首先需要掌握的就是其中的一些基础应用。比如今天我们为大家介绍的Python字典的相关操作,就是我们在学习过程中需要熟练掌握的技巧。

  Python字典(Dictionary)是一种映射结构的数据类型,由无序的“键-值对”组成。字典的键必须是不可改变的类型,如:字符串,数字,tuple;值可以为任何Python数据类型。

1、新建Python字典

>>> dict = {} #新建一个空字典
>>> type(dict)
<type dict>

 

2、增加Python字典元素:两种方法

>>> dict[a] = 1
>>> dict
{a: 1}
>>> dict.setdefault(b,2)
2
>>> dict
{a: 1, b: 2}

 

3、删除Python字典

>>> del dict[a]
>>> dict
{b: 2}
>>> dict.clear()
>>> dict
{}

 

Python字典增删操作技巧简述,布布扣,bubuko.com

Python字典增删操作技巧简述

上一篇:C语言的设计模式-单一职责


下一篇:spring aop理解