Ad
  • Custom User Avatar

    Sounds like you tried to find the index of an item that is not actually in the list. i.e. if my list was ['a', 'b', 'c'] and I asked for the index of 'a' I would get the value 0. If I asked for the index of 'd' however then that is not in my list so you get an error :(