I get this error:
IndexError: list index out of range
This is my function:
JavaScript
x
25
25
1
def power(x, y, bound):
2
list, exp = [], []
3
z = -1
4
for i in range (1, bound):
5
for j in range (1, bound):
6
if x**i + y**j in range (bound):
7
if x**i + y**j in list:
8
break
9
else:
10
list.append(x**i + y**j)
11
z += 1
12
if z == 0:
13
exp.append(str(x**i + y**j)+" = " + str(x) + "^" + str(i) + " + " + str(y) + "^" + str(j))
14
break
15
if list[z] == max(list):
16
exp.append(str(x**i + y**j)+" = " + str(x) + "^" + str(i) + " + " + str(y) + "^" + str(j))
17
else:
18
for n in range(len(list)):
19
if (list[z] < list[n+1]) and (list[z] > list[n]):
20
exp.insert(n, str(x**i + y**j) + " = " + str(x) + "^" + str(i) + " + " + str(y) + "^" + str(j))
21
else:
22
break
23
print("nThe list of values:", sorted(list))
24
print("nExplaination:n"+"n".join(exp))
25
Call my function:
JavaScript
1
7
1
print("Input: Two positive integers x and y and the boundnOutput: A list of values x^i + y^j bounded by boundn(i and j are positive integers)n")
2
x = int(input("Input x: "))
3
y = int(input("Input y: "))
4
bound = int(input("Input the bound: "))
5
6
power(x, y, bound)
7
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
1
2
1
if (list[z] < list[n+1]) and (list[z] > list[n]):
2
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.