python列表重复元素个数
时间: 2023-07-02 11:23:53 浏览: 111
你可以使用Python的Counter模块来统计列表中重复元素的个数。代码如下:
```python
from collections import Counter
my_list = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4]
counted_list = Counter(my_list)
# 输出重复元素的个数
for key, value in counted_list.items():
if value > 1:
print(f"{key} 重复了 {value} 次。")
```
输出结果为:
```
2 重复了 2 次。
3 重复了 3 次。
4 重复了 4 次。
```
阅读全文