统计单词出现次数py
时间: 2024-09-28 17:13:26 浏览: 36
统计文章单词前五个数.zip
在Python中统计单词出现次数通常通过文本处理和字典数据结构来实现。这里是一个简单的例子:
```python
def count_words(text):
# 将文本转换为小写并分词
words = text.lower().split()
# 创建一个空字典来存储单词及其计数
word_count = {}
# 遍历分词后的单词列表
for word in words:
if word in word_count:
# 如果单词已存在于字典中,增加计数
word_count[word] += 1
else:
# 否则,将单词添加到字典,并设置计数为1
word_count[word] = 1
return word_count
# 示例:
text = "这是一个样本文本,用于演示如何统计单词出现次数。"
word_counts = count_words(text)
print(word_counts)
阅读全文