python counter转换为列表
时间: 2023-04-27 15:02:59 浏览: 417
python把转列表为集合的方法
Python中的Counter对象可以通过调用其most_common()方法将其转换为一个列表,该列表包含了计数器中出现次数最多的元素及其出现次数。例如:
```python
from collections import Counter
c = Counter('abracadabra')
print(c.most_common())
```
输出结果为:
```
[('a', 5), ('r', 2), ('b', 2), ('c', 1), ('d', 1)]
```
其中,元素和其出现次数被封装在元组中,可以通过遍历列表来获取每个元素及其出现次数。
阅读全文