Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by Simon_R
def checkio(words: str) -> bool:
success = 0
word_list = words.split(" ")
for word in word_list:
if word.isalpha():
success += 1
if success == 3:
return True
else:
success = 0
return False
Aug. 20, 2019