Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one_line solution in Clear category for First Word by wii_caiji
first_word = lambda text : text.replace(',', '').replace('.', ' ').lstrip().split()[0]
July 22, 2020