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