Studying solution in Clear category for First Word (simplified) by Revold
def first_word(text: str) -> str: x = text.split() return x[0]
Nov. 21, 2020