4、统计文件【hamlet.txt】中小写字母a-z的字符分布,即出现a-z字符的数量,并输出结果。同时请输出文件一共包含的字符数量。
时间: 2024-02-24 11:57:02 浏览: 89
Python 合并多个TXT文件并统计词频的实现
以下是统计文件中小写字母a-z的字符分布并输出结果的Python代码:
```python
with open('hamlet.txt', 'r') as f:
content = f.read()
char_count = {}
for char in content:
if char.islower():
char_count[char] = char_count.get(char, 0) + 1
total_count = sum(char_count.values())
print("小写字母a-z的字符分布:")
for char, count in char_count.items():
print(char, ": ", count)
print("文件一共包含的字符数量:", total_count)
```
其中,将文件路径替换成实际的文件路径即可运行。
阅读全文