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