用python统计一个英文字符串中单词出现的次数。单词之间用逗号隔开。
时间: 2024-03-01 13:54:49 浏览: 70
zifuchuan.rar_统计 串中 单词 个数
可以使用Python中的split()函数将字符串分割成单个单词,并使用字典来存储每个单词的出现次数。以下是示例代码:
```python
text = "hello, world, how, are, you, world, today"
words = text.split(", ")
word_count = {}
for word in words:
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
print(word_count)
```
运行以上代码,输出结果为:
```
{'hello': 1, 'world': 2, 'how': 1, 'are': 1, 'you': 1, 'today': 1}
```
其中,字典的键为单词,值为该单词出现的次数。可以根据需求对字典中的数据进行进一步处理。
阅读全文