python字典作为统计记录工具

1.python 利用字典作为计数项,统计指定项的个数

#!/usr/bin/python

ta={}
key = "test"
if not key in ta:
    ta["test"]=0
for i in range(1,5):
    ta["test"] += 1

print ta

 

2.dictionary(或是列list)在python中循环方式为直接利用该对象:
next={"1":"a","2":"b","3":"c"}
for a in next:
    print a #a 是循环体内部的每个子对象。dictionary里的是key;而list是数组包含的子对象整体。
    print next[a]

注意,字典的操作对象基本都是用key,而list是每个子对象。

if not  key in dictionary:#判断key是否在dictionary里;或者用dictionary.has_key("key")

dictioinary.get("key")

 

 

 

posted on 2013-10-12 17:16  代码王子  阅读(394)  评论(0编辑  收藏  举报

导航