N=8
f,g=4,7
indexList = range(N)
print indexList
print f, g
indexList.pop(f)
indexList.pop(g)
在此代码中,我收到一条错误消息,指出g
in的弹出索引indexList
超出范围。这是输出:
[0, 1, 2, 3, 4, 5, 6, 7]
4 7
Traceback (most recent call last):
indexList.pop(g)
IndexError: pop index out of range
我不明白,g
值为 7,列表包含 7 个值,为什么无法返回列表中的 7?