字典统计列表list1数字出现的次数输出结果为文字版
时间: 2024-05-10 18:19:40 浏览: 44
统计字符出现的次数
5星 · 资源好评率100%
假设列表为list1,可以使用Python的collections库中的Counter函数来统计数字出现的次数。代码如下:
```python
from collections import Counter
list1 = [1, 2, 3, 2, 1, 2, 3, 4, 5, 4]
count = Counter(list1)
for num, freq in count.items():
print("数字{}出现了{}次".format(num, freq))
```
输出结果为:
```
数字1出现了2次
数字2出现了3次
数字3出现了2次
数字4出现了2次
数字5出现了1次
```
阅读全文