字符串中单词出现的次数
时间: 2023-09-03 19:12:54 浏览: 68
c#字符串查找某词出现的次数及索引
5星 · 资源好评率100%
可以使用 Python 中的 split() 方法将字符串分割成单词,然后使用字典来统计每个单词出现的次数。下面是一个示例代码:
```python
def count_words(text):
words = text.split()
word_count = {}
for word in words:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
return word_count
text = "hello world hello"
word_count = count_words(text)
print(word_count)
```
输出结果为:
```
{'hello': 2, 'world': 1}
```
这表示在字符串中,单词 "hello" 出现了 2 次,单词 "world" 出现了 1 次。
阅读全文