python统计单词个数
时间: 2023-10-13 12:28:10 浏览: 63
Python实现统计单词出现的个数
可以使用Python内置函数和数据结构来统计单词个数。以下是一个示例代码:
```python
text = "Hello world, hello python, hello AI"
words = text.split()
word_count = {}
for word in words:
if word not 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}
```
这个代码将字符串按照空格分割成单词列表,然后遍历列表,使用字典来记录每个单词出现的次数。最后输出字典即可。
阅读全文