python regex obtenha índices de final de partida para pesquisar palavras

# Using regex Python library

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