Light Mode
Dark Mode
What's my problem?

def checkio(words): count=0 for i in words.split(): if i.isalpha(): count+=1 if count==3: return True elif len(i)<3: return False elif i.isdigit(): return False

Attachment
Created: Nov. 22, 2018, 6:03 a.m.
Updated: Nov. 22, 2018, 6:37 p.m.
0
5
User avatar
Adam_Human