python 对出现字符串的计数,三种方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
import json
os.chdir("/data/pydata/pydata-book-master")
path='usagov_bitly_data2012-03-16-1331923249.txt'open(path).readline()
records=[json.loads(line) for line in open(path) ]
time_zones=[rec['tz'] for rec in records if 'tz' in rec]
#######################################
# method1
def get_counts(sequence):
    counts={}
    for x in sequence:        
        if x in counts:
            print(x)
            print(counts)
            ounts[x]+=1
        else:
            counts[x]=1
    return counts
#######################################
# method2
from collections import defaultdict
def get_counts2(sequence):
    counts=defaultdict(int)
    for x in sequence:
        counts[x]+=1
    return counts
print(get_counts2(time_zones))
##########################################
# method3
from collections import Counter
counts=Counter(time_zones)
print(counts)
 
 
原文链接:https://segmentfault.com/q/1010000009322032?sort=created



      本文转自独弹古调  51CTO博客,原文链接:http://blog.51cto.com/hunkz/1926303,如需转载请自行联系原作者






上一篇:DataGrid的几个小技巧


下一篇:java准确的获取操作系统的名称