码迷,mamicode.com
首页 > 编程语言 > 详细

Python字典增删操作技巧简述

时间:2014-06-23 08:20:12      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   数据   

  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字典增删操作技巧简述

标签:style   class   blog   code   color   数据   

原文地址:http://www.cnblogs.com/wuzhiming/p/3799402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!