编写程序,输入单词,输出输入单词中数量最多的单词
时间: 2023-08-22 10:05:08 浏览: 74
从键盘接收一行字符统计有多少个单词数?-C++程序设计(谭浩强完整版)
好的,我可以为您编写这样的程序。这个问题可以通过使用 Python 语言的一些内置函数来解决。您可以使用 Python 中的 Counter 类来计算单词出现的次数,然后找到出现次数最多的单词。下面是一个简单的程序实现:
```python
from collections import Counter
def most_frequent_word(sentence):
# 将字符串转换为单词列表
words = sentence.split()
# 使用 Counter 计算单词出现次数
word_counts = Counter(words)
# 找到出现次数最多的单词
most_frequent = word_counts.most_common(1)[0][0]
return most_frequent
# 测试程序
sentence = input("请输入一段文本:")
most_frequent = most_frequent_word(sentence)
print("出现次数最多的单词是:", most_frequent)
```
运行程序后,输入一段文本,程序将输出出现次数最多的单词。希望这个程序能够满足您的需求。
阅读全文