Python编程输入一段英文,统计英文单词出现的次数,并输出结果
时间: 2024-03-14 13:44:51 浏览: 87
Python统计单词出现的次数
好的,以下是 Python 代码:
```python
text = input("请输入一段英文:")
text = text.lower() # 转换为小写,避免大小写造成的统计问题
words = text.split() # 将字符串按空格分割成单词列表
word_count = {} # 记录每个单词出现的次数的字典
for word in words:
if word not in word_count:
word_count[word] = 1
else:
word_count[word] += 1
print("单词出现次数如下:")
for word, count in word_count.items():
print(f"{word}: {count}")
```
你可以将英文文本输入到程序中,程序会统计并输出每个单词出现的次数。
阅读全文