I have a string "Hello I am going to I with hello am
". I want to find how many times a word occur in the string. Example hello occurs 2 time. I tried this approach that only prints characters -
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")
I want to learn how to find the word count.