Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First Word solution in Clear category for First Word by W.Zalicki
def first_word(text: str) -> str:
import re
text = text.strip('.')
text = text.strip()
word = re.split('[, .]',text)
return word[0]
Jan. 14, 2018
Comments: