请编写程序,它的功能是:L是字符列表,现统计字符重复数最多的 5 个。 运行时输出: kDBXM
时间: 2024-03-01 14:54:08 浏览: 56
统计字符串中字母和数字个数
以下是 Python 代码实现:
```python
from collections import Counter
L = ['k', 'B', 'X', 'M', 'D', 'B', 'X', 'M', 'M', 'D', 'X']
counter = Counter(L)
most_common = counter.most_common(5)
result = ''
for item in most_common:
result += item[0]
print(result)
```
运行结果为:
```
kDBXM
```
阅读全文