Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
class practice solution in Creative category for First Word (simplified) by Takeshi_Sue
class Text:
separater = " "
def __init__(self, text):
self.text = text
def first_word(self):
return self.text.split(self.separater)[0]
def first_word(arg1: str) -> str:
text = Text(arg1)
return text.first_word()
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!")
Feb. 27, 2021