Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Three Words by capback250
def checkio(words):
i = 0
label = []
array = words.split(" ")
while i < len(array):
if array[i].isalpha():
label.append(array[i])
if len(label) >= 3:
break
else:
label = []
i += 1
return len(label) >= 3
Feb. 9, 2016