4. 对于给定的文件sample.txt,统计其中单词的个数,以及给定单词出现的次数。
时间: 2024-02-11 17:05:25 浏览: 73
统计文件中单词个数及每个单词出现频率
5星 · 资源好评率100%
好的,我可以帮你解决这个问题。你可以把sample.txt文件放在当前目录下,然后我可以通过以下Python代码来完成你的需求:
```python
# 打开文件
with open('sample.txt', 'r') as f:
# 读取文件内容
content = f.read()
# 统计单词个数
word_list = content.split()
word_count = len(word_list)
# 统计给定单词出现次数
given_word = 'test' # 给定的单词
given_word_count = word_list.count(given_word)
# 输出结果
print('单词个数:', word_count)
print('给定单词 "%s" 出现次数:' % given_word, given_word_count)
```
你只需要将代码中的 "sample.txt" 替换为你的文件名,将 "test" 替换为你要统计的单词即可。
阅读全文