Skip to content
Advertisement

Why do I get ‘IndexError: list index out of range’

I get this error:

IndexError: list index out of range

This is my function:

JavaScript

Call my function:

JavaScript

How can I solve this problem?

Advertisement

Answer

Ok, so now you’ve changed your code and my previous answer has been invalidated.

Now your problem is here:

JavaScript

with n+1 because n comes from for n in range(len(list)): and eventually n+1 will fall off the end of list.

You have to ask yourself what: if (list[z] < list[n+1]) and (list[z] > list[n]): actually means.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement