First solution in Clear category for First Word by mikra
import re first_word = lambda txt: re.search(r"[A-z']+", txt)[0]
April 7, 2019