Python membaca string antara dua substring

import re

s = 's1Texts2'
result = re.search('s1(.*)s2', s)
print(result.group(1))
Real Raccoon