First Word (simplified)

Sophia Kim·2021년 9월 30일
0

checkio

목록 보기
2/6

def first_word(text: str) -> str:
"""
returns the first word in a given text.
"""
text.split()
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!")
profile
Data analyst und NLP engineer

0개의 댓글