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