An index in [Python](http://net-informations.com/python/iq/default.htm) refers 
to a position within an ordered list . This error basically means you are 
trying to access a value at a List index which is out of bounds i.e greater 
than the last index of the list or less than the least index in the list. So 
the first element is 0, second is 1, so on. So if there are n elements in a 
list, the last element is n-1 . If you try to access the empty or None element 
by pointing available index of the list, then you will get the "List index out 
of range " error. To solve this error, you should make sure that you're not 
trying to access a non-existent item in a list.

Reply via email to