Comment se séparer et garder le délimiteur à la même ligne dans Python

#split and keep the dlimeters at the end of the line.
#Ex, using the '.'  '?'  '!' as delimeters.

re.split('(?<=!)|(?<=\.)|(?<=\?)', text)
Adventurous Addax