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