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