Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by radekj
def checkio(words):
words = words.split()
for tripple in zip(words, words[1:], words[2:]):
if all([i.isalpha() for i in tripple]):
return True
return False
May 15, 2014
Comments: