python统计单词数量
时间: 2023-10-12 13:15:20 浏览: 103
可以使用Python中的字典来统计单词数量,具体步骤如下:
1. 读取文本文件,并将文件内容存储到一个字符串变量中;
2. 将字符串变量中的所有单词分割出来,可以使用Python的 split() 函数;
3. 遍历分割出来的每个单词,使用字典来记录每个单词出现的次数;
4. 最后输出每个单词出现的次数。
以下是一个示例代码:
```python
# 读取文件内容
with open('example.txt', 'r') as f:
content = f.read()
# 分割单词
words = content.split()
# 统计单词数量
word_count = {}
for word in words:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
# 输出结果
for word, count in word_count.items():
print(f'{word}: {count}')
```
注意,上述代码中的 `example.txt` 是需要统计单词数量的文本文件,可以根据实际情况进行替换。
阅读全文