Nov 182009
You will get this error when there is no list element to access.
For example,
L=[1, 2, 3]
L[4] doesn’t exist.
If you try to call L[4], you will get the above error.
You will get this error when there is no list element to access.
For example,
L=[1, 2, 3]
L[4] doesn’t exist.
If you try to call L[4], you will get the above error.
