0% completed
import re pattern = r"\bfo" text = "football is a sport and a football game" print(re.findall(pattern, text))
.....