Python regex dapatkan indeks awal untuk mencari kata

# Using regex Python library

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