Подскажите с чего надо начать
def count_words(text, word): a=0 for i in word: if str(i) in text: a=a+1 else: a=a return a
17
11
1