Python Regex erhalten Sie Start -End -Indizes für das Suchen von Wort

# Using regex Python library

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