I am a novice. I don't know what i did wrong.
when i run main.py, IndexError: list index out of range
it is main.py:
data = open('data.txt', 'r')
row = -1
while True:
row = row + 1
word = data.readlines()[row]
print(html_p.find(word))
data.txt:
tommy
amy
bobby
Change
next