Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Basic and clear solution in Clear category for First Word (simplified) by Kovalov
def first_word(text: str) -> str:
x = text.split(' ',1)
return str(x[0])
print("Example:")
print(first_word("Hello world"))
# These "asserts" are used for self-checking
assert first_word("Hello world") == "Hello"
assert first_word("a word") == "a"
assert first_word("greeting from CheckiO Planet") == "greeting"
assert first_word("hi") == "hi"
print("The mission is done! Click 'Check Solution' to earn rewards!")
May 20, 2024