2012年2月21日 星期二

[python]word count / word frequency

[python]word count / word frequency

有一個list
[a,b,c,a,b,b,a]
要成為
{'a':2,'b':3,'c:1'}


from collections import defaultdict
fq= defaultdict( int )
for w in words:
fq[w] += 1


-end-

沒有留言:

張貼留言