Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
.isalpha() solution in Clear category for Three Words by moyyerra
def checkio(words: str) -> bool:
count = 0
words = words.split()
for w in words:
if w.isalpha() == True:
count += 1
if count == 3:
return True
else:
count = 0
return False
April 2, 2019