Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one-liner solution in Clear category for First Word by Bernardo_Pereira
def first_word(text: str) -> str:
return text.replace('.', ' ').replace(',', ' ').split()[0]
Sept. 11, 2021