Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Solution for "First Word (simplified)" solution in Clear category for First Word (simplified) by Mariusz_Lesniak
def first_word(text: str) -> str:
"""
String method split() simply splits strings to elements.
If None argument is provided, it uses " " as separator.
"""
return text.split()[0]
June 16, 2022
Comments: