用python编写:任意输入一-组词语,输入各个词语及其出现的次数(要求使用字典完成次数的统计),示例运行结果如下请输入一-组词语(空格分隔)
时间: 2024-03-11 13:51:18 浏览: 63
Python实现统计单词出现的个数
好的,下面是代码实现:
```python
word_list = input("请输入一组词语(空格分隔): ").split()
word_count = {}
for word in word_list:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
for word, count in word_count.items():
print(f"{word}: {count}")
```
运行示例:
```
请输入一组词语(空格分隔): hello world hello python world
hello: 2
world: 2
python: 1
```
请问还有其他问题吗?
阅读全文