Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for First Word by eryk.kosmala
def first_word(text: str) -> str:
text = text.replace('.',' ').replace(',',' ')
if text[0] == ' ':
text = text[1:]
x = text.split()
first = x[0]
return first
Nov. 15, 2018