Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First Word solution in Uncategorized category for First Word by djilka
import re
def first_word(text: str) -> str:
return re.search( "[a-zA-Z']+", text ).group(0)
May 4, 2018
Comments: