Python List: Index Out Of Range?
def purchase(amount, day, month, country): global history history += [0, 0, days_in_months(month - 1) + day] if history[len(history) - 1] <= history[len(history)]:
Solution 1:
Because history[len(history)]
is accessing beyond the limit of the array, if you have an array of 3 elements for example, the last element would be history[2]
while len(history)
would be 3 which is beyond the limit. Arrays count from 0 in Python.
Solution 2:
You're trying to look up the nth index of a list with n entries. That will always fail. E.g. a list of length 3 will never have a value stored at index 3 as the indices are zero based and therefore are 0, 1, 2.
In your case history[len(history) - 1]
will return the last element of history
, you can't go beyond that index.
Post a Comment for "Python List: Index Out Of Range?"