大佬们看看为什么列表参数超范围
n = int(input('input the number of the people:'))def ipt(a,n):
for i in range(1,n+1):
a.append(i)
return a
A = []
ipt(A,n)
print(A)
for i in range(n):
if (A)%3 == 0: #IndexError: list index out of range
A.pop(i)
print(A)
因为列表 A 在 最后的 for 循环中,进行 pop 弹出元素了
弹出后列表的长度变小了,而你的 n 没有改变,所以最后导致循环超出列表范围
本帖最后由 jackz007 于 2022-10-11 16:31 编辑
如果是约瑟夫环:
A , k = [] , 1
for i in range(int(input('input the number of the people:'))) : A . append(i + 1)
while len(A) > 1:
for x in A[:]:
if not k % 3 : A . remove(x)
k += 1
print(A)
运行实况:
D:\\Python>python x1.py
input the number of the people:41
31
D:\\Python>
页:
[1]