在Python中使用for循环迭代创建字典

时间:2015-03-25 15:53:54

标签: python dictionary

我是Python新手。我创建了一个名为Features的小字典。它有三个键。

print features.keys()
['Amy', 'LadyJesusFan777', 'rach']

我在下面写了一个小代码,其中get_count函数返回一个字典。我想要三个不同的字典,名称为'Amy','LadyJesusFan777','rach'映射到get_count函数返回的字典。但不幸的是我的下面代码只返回一个名为key的字典。

for key in features.keys(): 
 key = get_count(features[key])

get_count函数的代码。

def get_count(doc):

 pair1 = collections.Counter(doc)
 print pair1.keys()
 print pair1.values()

 return pair1

请帮帮我。?

0 个答案:

没有答案