regex trouver toutes les phrases python

text = "This is a good sentence. This is another good 1! thanks"

sentences = re.findall(r"[A-Z].*?(\.\s|\?\s|\!\s)", text)
Control C Control V