Regular expression
Given the quote: "Always do your best. Your best is going to change from moment to moment; it will be different when you are healthy as opposed to sick. Under any circumstance, simply do your best, and you will avoid self-judgment, self-abuse and regret." Complete the program so that it will take a word as input and output the number of times that word appears in the quote. My attempt import re quote = "Always do your best. Your best is going to change from moment to moment; it will be different when you are healthy as opposed to sick. Under any circumstance, simply do your best, and you will avoid self-judgment, self-abuse and regret" r = 'r' gondya = r+'"'+(input())+'"' #your code goes here print(len(re.findall(gondya , quote))) It's not happening Need help