Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for First Word (simplified) by Oliverwang-L
def first_word(text: str) -> str:
"""
returns the first word in a given text.
"""
# your code here
b =""
for i in text:
if i == " ":
break
else:
b = b + i
return b
if __name__ == '__main__':
print("Example:")
print(first_word("Hello world"))
# These "asserts" are used for self-checking and not for an auto-testing
assert first_word("Hello world") == "Hello"
assert first_word("a word") == "a"
assert first_word("hi") == "hi"
print("Coding complete? Click 'Check' to earn cool rewards!")
June 16, 2021