Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word (simplified) by solnischka78
def first_word(text: str) -> str:
list_text = text.split()
return list_text[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!")
March 9, 2024
Comments: