为了账号安全,请及时绑定邮箱和手机立即绑定

Python 3.8:使用 append() 时的 IndexError

Python 3.8:使用 append() 时的 IndexError

长风秋雁 2022-08-02 18:24:12
我做了一个小的“控制台”,将命令拆分为.我将“命令”(第一个“单词”与)与第一个单词后面的“参数”分开。下面是生成错误的代码:split()input()cmdCompl = input(prompt).strip().split()cmdRaw = cmdCompl[0]args = addArgsToList(cmdCompl)addArgsToList()功能:def addArgsToList(lst=[]):    newList = []    for i in range(len(lst)):        newList.append(lst[i+1])    return newList我尝试将后面的每个单词添加到由 返回的列表中。但我得到的是:cmdRawargsaddArgsToList()Welcome to the test console!Type help or ? for a list of commandstestconsole >>> helpTraceback (most recent call last):  File "testconsole.py", line 25, in <module>    args = addArgsToList(cmdCompl)  File "testconsole.py", line 15, in addArgsToList    newList.append(lst[i+1])IndexError: list index out of range我不知道为什么我会得到一个,因为据我所知,可以动态分配。IndexErrornewList有什么帮助吗?
查看完整描述

2 回答

?
慕妹3146593

TA贡献1820条经验 获得超9个赞

你应该这样做:


如果您希望避免追加第一个元素


def addArgsToList(lst=[]):

    newList = []

    for i in range(1,len(lst)):

        newList.append(lst[i])

    return newList

如果您只是尝试复制新列表中的元素,只需执行以下操作:


newList = lst[1:].copy()


查看完整回答
反对 回复 2022-08-02
?
慕勒3428872

TA贡献1848条经验 获得超6个赞

当您执行以下操作时:

for i in range(len(lst)):
    newList.append(lst[i+1])

最后一次迭代尝试访问哪个是越界的。lstlen(lst)


查看完整回答
反对 回复 2022-08-02
  • 2 回答
  • 0 关注
  • 148 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信