Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for First Word (simplified) by HiKaGe
# Quest
from collections import namedtuple
def first_word(text: str) -> str:
try:
Words = namedtuple("Words", text)
result = Words(*text.split())
return result[0]
except:
return text.split(' ')[0]
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!")
Oct. 29, 2021