Regex Temukan indeks kata dari semua kecocokan

import re
sentence = input("Give me a sentence ")
word = input("What word would you like to find ")
for match in re.finditer(word, sentence):
    print (match.start(), match.end())
Light Bringer