Python Regex Uzyskaj indeksy końcowe do wyszukiwania słów

# Using regex Python library

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