编写程序,统计英文短文中,每个单词出现的次数。python
时间: 2024-10-17 09:02:51 浏览: 43
C语言统计一篇英文短文中单词的个数实例代码
5星 · 资源好评率100%
在Python中,编写一个程序来统计英文短文中每个单词的出现次数可以使用字典(dictionary)数据结构。这里是一个简单的步骤示例:
```python
def count_words(text):
# 将文本转换为小写并分割成单词列表
words = text.lower().split()
# 创建一个空字典来存储单词及其计数
word_count = {}
# 遍历单词列表
for word in words:
# 如果单词已经在字典中,增加计数
if word in word_count:
word_count[word] += 1
# 否则,添加单词到字典并设置计数为1
else:
word_count[word] = 1
return word_count
# 测试函数
short_text = "Hello world! This is a simple example. Hello again."
word_counts = count_words(short_text)
print("Word counts:", word_counts)
阅读全文