Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3 words solution in Clear category for Three Words by Nirmala
def checkio(words):
t = 0
for w in words.split():
if w.isalpha():
t += 1
else:
t = 0
if t == 3:
return True
return False
Nov. 8, 2016
Comments: