循环遍历文件夹的每个文本文档并且统计每个文档的词频
时间: 2024-05-08 18:19:25 浏览: 80
循环遍历文件夹和文件
好的,这个问题很适合我。你可以使用Python程序实现遍历文件夹并统计每个文档的词频。以下是一个示例代码:
```python
import os
from collections import Counter
# 遍历文件夹
folder_path = "your/folder/path/"
for filename in os.listdir(folder_path):
if filename.endswith(".txt"):
# 统计词频
with open(os.path.join(folder_path, filename), "r", encoding="utf-8") as f:
word_counts = Counter(f.read().split())
print(f"文件 {filename} 的词频统计结果为:")
print(word_counts)
```
希望这个代码可以帮到你!
阅读全文