First solution in Clear category for First Word by Ordik
import re def first_word(text: str) -> str: return re.search("[\w']+", text).group()
Nov. 16, 2020