Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
FirstWord.c solution in Clear category for First Word by trudnopodobny
def first_word(text: str) -> str:
text = text.replace('.',' ').replace(',',' ').strip()
text = text.split(' ')
return text[0]
Oct. 4, 2018
Comments: