python统计符串中单词出现个数
时间: 2023-11-12 20:08:30 浏览: 32
Python实现统计单词出现的个数
可以使用Python的内置函数`split()`将字符串拆分成单词列表,然后使用Python的内置模块`collections`中的`Counter`类来统计每个单词出现的次数。下面是示例代码:
```python
from collections import Counter
string = "hello world hello python world"
words = string.split()
word_counts = Counter(words)
print(word_counts)
```
输出结果为:
```
Counter({'hello': 2, 'world': 2, 'python': 1})
```
在上面的代码中,我们将字符串`string`拆分成单词列表`words`,然后使用`Counter`类统计每个单词出现的次数。最终输出结果显示每个单词出现的次数。
阅读全文