Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
But why import if you don't need to? solution in Clear category for First Word by moyyerra
def first_word(text: str) -> str:
text = text.replace(',', ' ').replace('.', ' ').strip()
text = text.split()
return text[0]
April 2, 2019