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

Python的数据结构 -- 字典

时间:2015-04-22 17:49:36      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

ab = {001:李晓诗,002:胡泽坤,003:陈春荣,004:杨松川}
print(003 is %s % ab[003])
for number,name in ab.items():
   print(%s is %s % (number,name))
ab[005]=灵芝汤
del ab[002]
if 003 in ab:
   print(003 is %s % ab[003])

#通过{}来赋值
#通过del可以删除
#通过in可以遍历
#现在已经没有has_key方法

2015/4/19 by Kerita

Python的数据结构 -- 字典

标签:

原文地址:http://www.cnblogs.com/kerita/p/4447929.html

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