str.split() solution in Clear category for First Word (simplified) by David_Jones
def first_word(text): return text.split()[0]
June 17, 2019
Comments: