Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word by yurimelnyk
def first_word(text: str) -> str:
return text.replace('.', ' ').replace(',', ' ').lstrip().split()[0]
Feb. 5, 2019