Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First_word using for, if solution in Creative category for First Word (simplified) by PopovNick
def first_word(st):
a = ''
for i in range(len(st)):
if st[i] != ' ':
a += st[i]
else:
break
return(a)
April 3, 2020