Python Regex Get Start End Indices pour la recherche de mots

# Using regex Python library

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