Python Regex Get Inicio End Indices para buscar Word

# Using regex Python library

>>> match.start()
2
>>> match.end()
8
Tofufu