First solution in Clear category for First Word (simplified) by wbl4126
def first_word(text: str) -> str: return text.split()[0]
March 9, 2020