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 vlad.bezden
"""
First word (simplified).
You are given a string where you have to find its first word.
This is a simplified version of the First Word mission.
Input string consists of only english letters and spaces.
There aren’t any spaces at the beginning and the end of the string.
Input: A string.
Output: A string.
Example:
first_word("Hello world") == "Hello"
How it is used: The first word is a command in a command line.
Precondition: Text can contain a-z, A-Z and spaces.
"""
def first_word(text: str) -> str:
"""
returns the first word in a given text.
"""
# your code here
return text.split()[0]
if __name__ == "__main__":
assert first_word("Hello world") == "Hello"
assert first_word("a word") == "a"
assert first_word("hi") == "hi"
Jan. 6, 2020