regex is life solution in Clear category for First Word by -dead-inside-
import re first_word = lambda s: re.findall("[\w']+", s)[0]
Nov. 2, 2019