Python列表统计重复元素
方法一
使用list的内置方法list.count()
1 | l = [1, 1, 2, 3, 3] |
方法二
使用python内置方法collections的Count()
模块
1 | from collections import Counter |
方法三
使用for循环
1 | l = [1, 1, 2, 3, 3] |
list.count()
1 | l = [1, 1, 2, 3, 3] |
collections的Count()
模块1 | from collections import Counter |
for循环
1 | l = [1, 1, 2, 3, 3] |