[Python_Ch10]找出多行文本中最常出现的单词。
时间: 2023-05-17 15:05:18 浏览: 128
可以使用Python中的Counter模块来实现这个功能,具体代码如下:
```python
from collections import Counter
def find_most_common_words(text):
words = text.split()
counter = Counter(words)
return counter.most_common(1)[0][0]
```
这个函数接受一个多行文本字符串作为参数,将其拆分成单词列表,然后使用Counter模块统计每个单词出现的次数。最后返回出现次数最多的单词。
阅读全文