Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for First Word (simplified) by roman.letunovsky
def first_word(text: str) -> str:
text = text.replace('.', ' ').replace(',', ' ').strip()
text = text.split()
return text[0]
April 30, 2020