Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Monkey Typing by PiotrKrol
def count_words(text, words):
text = text.lower()
wynik = 0
for i in(words):
if i in text:
wynik += 1
return wynik
Oct. 19, 2017