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

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

與另一個(gè)列表比較后保存列表中的后續(xù)項(xiàng)目

與另一個(gè)列表比較后保存列表中的后續(xù)項(xiàng)目

SMILET 2023-10-11 20:06:36
我有兩個(gè)列表——其中一個(gè)是字符串列表,另一個(gè)是嵌套的字符串列表。我想在兩個(gè)列表之間的交點(diǎn)之后保存字符串列表中的下 5 個(gè)項(xiàng)目。例如,這是我有的兩個(gè)列表:list1 = [['this', 'is', 'the', 'common', 'part'], ['this', 'is', 'another', 'commonality']]list2 = ['this', 'is', 'the', 'common', 'part', 'and', 'i', 'am', 'saving', 'this', 'blah', 'blah', 'this', 'is', 'another', 'commonality', 'i', 'am', 'also', 'saving', 'this']期望的輸出是:result = [['and', 'i', 'am', 'saving', 'this'], ['i', 'am', 'also', 'saving', 'this']]我的代碼有許多不友好的嵌套條件——如果有人有一個(gè)干凈的方法來(lái)實(shí)現(xiàn)目標(biāo),我將不勝感激!
查看完整描述

1 回答

?
大話(huà)西游666

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

你可以這樣嘗試:


amount_of_subsequent_items = 5

result = []

for sublist in list1:

    for i in range(len(list2)-1):

        if sublist == list2[i:i+len(sublist)]:

            result.append(list2[i+len(sublist):i+len(sublist)+amount_of_subsequent_items])

這通過(guò)在 中的任何位置list1查找sublist(of ) 的出現(xiàn)來(lái)迭代您的。如果發(fā)現(xiàn)某個(gè)事件,則包含 的下一個(gè)后續(xù)項(xiàng)目的列表將存儲(chǔ)在 中。list1list2amount_of_subsequent_itemslist2result


查看完整回答
反對(duì) 回復(fù) 2023-10-11
  • 1 回答
  • 0 關(guān)注
  • 112 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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