def count_letter(letter): a = input("whats the word: ") count = 0 for i in a: if i == letter: count += 1 return count pri