首先生成包含1000个随机字符的字符串,然后统计每个字符的出现次数。
时间: 2023-12-20 21:04:05 浏览: 118
一个字符串中出现次数最多的字符 统计这个次数【实现代码】
好的,这是一个可以回答的问题。以下是代码:
```python
import random
import string
# 生成一个包含1000个随机字符的字符串
random_string = ''.join([random.choice(string.ascii_lowercase) for i in range(1000)])
# 统计每个字符的出现次数
char_count = {}
for c in random_string:
if c in char_count:
char_count[c] += 1
else:
char_count[c] = 1
# 输出每个字符的出现次数
for c, count in char_count.items():
print(f"字符 '{c}' 出现了 {count} 次")
```
希望能对你有所帮助!
阅读全文