Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by PawelBubak
def checkio(words):
count = 0
stop = 0
for w in words.split():
if w.isdigit():
count = 0
elif w.isalpha():
count = count + 1
if count==3:
stop=3
if stop == 3:
return True
else:
return False
return True or False
Oct. 28, 2016