在此基础上根据单词出现次数进行倒序排序
时间: 2023-12-09 22:06:20 浏览: 25
可以使用Python中的Counter模块来实现单词出现次数的统计,然后使用sorted函数对结果进行倒序排序。
示例代码:
```python
from collections import Counter
text = "hello world hello python python python"
words = text.split()
word_count = Counter(words)
sorted_word_count = sorted(word_count.items(), key=lambda x: x[1], reverse=True)
for word, count in sorted_word_count:
print(word, count)
```
输出结果:
```
python 3
hello 2
world 1
```
阅读全文