Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using .replace() and .split() in a one liner solution in Clear category for First Word by jiizzyy
first_word = lambda text: text.replace('.', ' ').replace(',', ' ').split()[0]
Feb. 2, 2020