第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

Python 3.8:使用 append() 時(shí)的 IndexError

Python 3.8:使用 append() 時(shí)的 IndexError

長風(fēng)秋雁 2022-08-02 18:24:12
我做了一個(gè)小的“控制臺”,將命令拆分為.我將“命令”(第一個(gè)“單詞”與)與第一個(gè)單詞后面的“參數(shù)”分開。下面是生成錯(cuò)誤的代碼: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我嘗試將后面的每個(gè)單詞添加到由 返回的列表中。但我得到的是: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我不知道為什么我會得到一個(gè),因?yàn)閾?jù)我所知,可以動態(tài)分配。IndexErrornewList有什么幫助嗎?
查看完整描述

2 回答

?
慕妹3146593

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超9個(gè)贊

你應(yīng)該這樣做:


如果您希望避免追加第一個(gè)元素


def addArgsToList(lst=[]):

    newList = []

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

        newList.append(lst[i])

    return newList

如果您只是嘗試復(fù)制新列表中的元素,只需執(zhí)行以下操作:


newList = lst[1:].copy()


查看完整回答
反對 回復(fù) 2022-08-02
?
慕勒3428872

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超6個(gè)贊

當(dāng)您執(zhí)行以下操作時(shí):

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

最后一次迭代嘗試訪問哪個(gè)是越界的。lstlen(lst)


查看完整回答
反對 回復(fù) 2022-08-02
  • 2 回答
  • 0 關(guān)注
  • 182 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號