Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for First Word by poa
import string
import re
def first_word(text: str) -> str:
words = re.split(f"""[{string.punctuation.replace("'", "")+string.whitespace}]""", text)
words = [*filter(lambda x: len(x) != 0, words)]
return words[0]
print("Example:")
print(first_word("Hello world"))
# These "asserts" are used for self-checking
assert first_word("Hello world") == "Hello"
assert first_word(" a word ") == "a"
assert first_word("don't touch it") == "don't"
assert first_word("greetings, friends") == "greetings"
assert first_word("... and so on ...") == "and"
assert first_word("hi") == "hi"
print("The mission is done! Click 'Check Solution' to earn rewards!")
March 23, 2024