You can use re.findall
with regex .*?[.!?]
; the lazy quantifier *?
makes sure each pattern matches up to the specific delimiter you want to match on:
import re
s = """You! Are you Tom? I am Danny."""
re.findall('.*?[.!?]', s)
# ['You!', ' Are you Tom?', ' I am Danny.']
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…