First solution in Clear category for First Word (simplified) by s_o_va
def first_word(text: str) -> str: return text.split()[0]
April 10, 2019