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