Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Three Words by PrettyLiza
def checkio(words):
words=words.split(' ')
for s in range(len(words)-2):
if words[s].isalpha() and words[s+1].isalpha() and words[s+2].isalpha() :
return (True)
return (False)
Oct. 15, 2015
Comments: