Straightforward solution in Clear category for First Word (simplified) by rodka81
def first_word(text: str) -> str: return text.split()[0]
March 27, 2019