[Solved] index out of range but is in fact in range [closed]
Well try to debug your code by yourself first. Anyhow for your question Why is this happening? : It gives you error in postCode = split_address[4] because your list has 4 elements 0,1,2,3 and you are accessing the 4th element which is not present.. you don’t have the index[4] thats why it gives you error … Read more