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