Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for First Word (simplified) by megaexception
def first_word(text: str) -> str:
if ' ' in text:
return text[:text.index(' ')]
return text
April 26, 2020
Comments: