Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simple solution in Clear category for First Word (simplified) by ksc38317
def first_word(text: str) -> str:
return text.split(' ')[0]
July 18, 2019
Comments: