gpt4 book ai didi

python - 如何查找字符串中单词的计数

转载 作者:太空狗 更新时间:2023-10-29 17:09:20 26 4
gpt4 key购买 nike

我有一个字符串“Hello I am going to I with hello am”。我想找出一个单词在字符串中出现了多少次。示例 hello 出现 2 次。我试过这种只打印字符的方法 -

def countWord(input_string):
d = {}
for word in input_string:
try:
d[word] += 1
except:
d[word] = 1

for k in d.keys():
print "%s: %d" % (k, d[k])
print countWord("Hello I am going to I with Hello am")

我想学习如何计算字数。

最佳答案

如果你想找到单个单词的计数,只需使用count:

input_string.count("Hello")

使用 collections.Countersplit() 来计算所有单词:

from collections import Counter

words = input_string.split()
wordCount = Counter(words)

关于python - 如何查找字符串中单词的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11300383/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com