how is this possible, I have a list called "temp". This is what I have in my python interpreter.
In [150]: len(temp)
Out[150]: 773942
In [151]: temp[773942]
and I get an IndexError: list index out of range.
I'm confused because it just told me that there are 773942 values in the list, and now it tells me that the index is out of range?