Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by lexin13
def checkio(words):
r = words.split()
for i in list(range(len(r) - 2)):
if r[i].isalpha() and r[i+1].isalpha() and r[i+2].isalpha():
return True
return False
Feb. 23, 2016