首页 > 代码库 > Python统计列表中元素出现的次数

Python统计列表中元素出现的次数

Python列表可以进行简单的统计,比如list的函数count()可以直接统计元素出现的次数。


mylist = [2,2,2,2,2,2,3,3,3,3]

myset = set(mylist) #删除列表中的重复元素   print myset    set([2, 3])

for item in myset: 

     print mylist.count(item), " of ", item, " in list"


打印结果:

6 of 2 in list  # 2出现在mylist中6次 

4 of 3 in list # 3出现在mylist中4次


Python统计列表中元素出现的次数