Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for First Word (simplified) by akhalilo
def first_word(text: str) -> str:
# your code here
return text.split(" ")[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!")
Oct. 17, 2023
Comments: