我有一份清单 l = [1,2,2,3,1,1,2,3,4,5,6]
我不想使用 l.count(element)
方法。我不想使用for循环或迭代器
输出如 {1: 3, 2: 3, 3: 2, 4: 1, 5: 1, 6: 1}
答案 0 :(得分:2)
使用集合Counter
:
>>> from collections import Counter
>>> l = [1,2,2,3,1,1,2,3,4,5,6]
>>> Counter(l)
Counter({1: 3, 2: 3, 3: 2, 4: 1, 5: 1, 6: 1})