现有hi python hello python编写程序统计单词个数
时间: 2023-07-01 17:22:47 浏览: 115
python笔记
可以使用Python中的字典来实现单词计数。具体代码如下:
```python
text = "hi python hello python"
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)
```
输出结果为:
```
{'hi': 1, 'python': 2, 'hello': 1}
```
其中,首先使用 `split()` 方法将文本分割成单词列表,然后遍历单词列表,使用字典 `word_count` 记录每个单词出现的次数,最后输出字典即可。
阅读全文