python 编写程序统计出文档homework01中单词the(The)的出现次数
时间: 2024-01-09 10:04:10 浏览: 88
好的,我可以帮您编写这个程序。下面是 python 代码:
```python
# 打开文件
with open('homework01.txt', 'r') as f:
# 读取文件内容
text = f.read()
# 统计单词出现次数
count = text.count('the') + text.count('The')
# 输出结果
print("单词 'the' 出现的次数为:", count)
```
请确保文档 `homework01.txt` 与程序在同一目录下,程序运行后会输出单词 `the` 出现的次数。注意,程序区分大小写。
阅读全文