ganti string antara dua regex python

a = r''' Example
This is a very annoying string
that takes up multiple lines
and h@s a// kind{s} of stupid symbols in it
ok String'''

import re
re.sub('\nThis.*?ok','',a, flags=re.DOTALL)
' Example String'
Thoughtless Tapir