python统计单词出现次数
时间: 2023-10-12 08:20:16 浏览: 279
Python统计单词出现的次数
可以使用Python中的字典来统计单词出现次数,具体实现如下:
```python
text = "Hello world, hello python, hello AI"
words = text.split() # 将字符串按空格分割成单词列表
word_count = {} # 创建空字典用于统计单词出现次数
for word in words:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
print(word_count)
```
输出结果为:
```
{'Hello': 3, 'world,': 1, 'hello': 1, 'python,': 1, 'AI': 1}
```
其中,字典的键是单词,值是该单词出现的次数。
阅读全文