Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
str.replace(old, new) solution in Clear category for First Word by David_Jones
def first_word(text):
return text.replace(',', ' ').replace('.', ' ').split()[0]
June 17, 2019
Comments: