用python统计数组中各数组出现次数
时间: 2023-08-31 07:09:35 浏览: 150
python教程-05-数组的定义和数组的操作.ev4.rar
可以使用Python中的collections模块中的Counter类来统计数组中各元素出现的次数。以下是一个示例代码:
```python
from collections import Counter
arr = [1, 2, 3, 1, 2, 1, 4, 5, 2, 3, 1]
count = Counter(arr)
for key, value in count.items():
print(f"{key}出现了{value}次")
```
输出结果:
```
1出现了4次
2出现了3次
3出现了2次
4出现了1次
5出现了1次
```
阅读全文