Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by artur_mierzwa
def checkio(words):
a = 0
for wyraz in words.split():
if wyraz.isalpha():
a += 1
else:
a = 0
if a == 3:
return True
return False
Oct. 15, 2016