统计文本文件中各类字符个数
时间: 2023-09-27 17:06:40 浏览: 158
统计文件中字符的个数
4星 · 用户满意度95%
好的,以下是 Python 代码示例:
```python
filename = "text.txt"
with open(filename, "r") as f:
text = f.read()
char_count = {}
for char in text:
if char in char_count:
char_count[char] += 1
else:
char_count[char] = 1
print("各类字符个数统计:")
for char, count in char_count.items():
print(f"{char}: {count}")
```
其中,代码中的 `text.txt` 是要统计字符个数的文本文件名,可以根据实际情况修改。运行代码后,程序会输出各类字符的个数统计结果。
阅读全文