Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Three words solution in Clear category for Three Words by mz97
def checkio(words):
words=words.split(" ")
k=0
for i in range(len(words)):
if words[i].isalpha():
k+=1
if k==3:
return True
else:
k=0
return False
Oct. 23, 2016