python wordcount
时间: 2023-08-18 16:04:29 浏览: 91
WordCount.py
您好!要编写一个Python的Word Count程序,您可以使用以下代码:
```python
def word_count(text):
words = text.split()
word_count = {}
for word in words:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
return word_count
text = input("请输入一段文本:")
result = word_count(text)
print("单词统计结果:")
for word, count in result.items():
print(f"{word}: {count}")
```
这段代码定义了一个`word_count`函数,接受一个文本作为参数,并返回一个字典,其中键是单词,值是该单词在文本中出现的次数。然后,通过用户输入获取一段文本,并调用`word_count`函数进行统计,最后输出每个单词及其出现次数。
希望这可以帮到您!如果您有任何其他问题,请随时提问。
阅读全文