使用python代码。英文文章中的词频统计。使用input函数输入一篇英文文章,统计该文章中各单词出现的次数并输出
时间: 2024-02-28 19:52:44 浏览: 85
如何用python统计英语文章词频?
好的,以下是Python代码实现:
```python
# 输入英文文章
text = input("请输入一篇英文文章:")
# 将所有单词转换成小写,并去除标点符号
words = text.lower().replace(',', '').replace('.', '').split()
# 统计每个单词的出现次数
word_count = {}
for word in words:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
# 输出结果
print("单词\t\t出现次数")
for word, count in word_count.items():
print(f"{word}\t\t{count}")
```
使用该代码,您可以输入一篇英文文章并统计其中各单词出现的次数。代码会将所有单词转换成小写,并去除标点符号,以便更准确地统计单词出现次数。最后,代码会输出每个单词及其出现次数。
阅读全文