Python 统计一个英文单词出现的频率
程序员文章站
2024-02-23 23:30:28
...
统计单词的个数
def count(str):
count_words = str.split()
count_word = {}
for word in count_words:
if word not in count_word.keys():
count_word[word] = 1
else:
count_word[word] += 1
return count_word
print(count('hello lily'))
上一篇: Linux--使用tr命令对字符串做处理
下一篇: 前端界面jQuery的字符串追加