I was playing with index and did finding letter's place
sentence = "Coding is hard"
index = sentence.index("i")
print(index)
worked fine for me, however when I wanted to find more than just 1 i it didn't work?
sentence = "Coding is hard"
index = sentence.index("i", index + 1)
print(index)
it doesn't work? can somebody explain please?