8. 英文文章中的词频统计。使用input函数输入一篇英文文章,统计该文章中各单词出现的次数并输出
时间: 2024-02-09 14:08:52 浏览: 67
英文文章词频统计
5星 · 资源好评率100%
好的,这是一个比较常见的编程问题。我可以为您提供一个Python程序来解决这个问题。请注意,程序将不区分单词的大小写,因此"hello"和"Hello"将被视为相同的单词。以下是程序代码:
```python
# 读取文章内容
text = input("请输入一篇英文文章:")
# 将所有单词转换为小写,并用空格分隔
words = text.lower().split()
# 创建一个空字典来存储每个单词的出现次数
word_counts = {}
# 遍历每个单词,并将其添加到字典中
for word in words:
if word not in word_counts:
word_counts[word] = 1
else:
word_counts[word] += 1
# 输出结果
print("各单词出现的次数如下:")
for word, count in word_counts.items():
print(word, ":", count)
```
您可以将上述代码复制到Python解释器中,并按Enter键运行程序。程序将提示您输入一篇英文文章。输入文章后,程序将分析文章中的单词,并输出每个单词出现的次数。
阅读全文