我有两个列表——其中一个是字符串列表,另一个是嵌套的字符串列表。我想在两个列表之间的交点之后保存字符串列表中的下 5 个项目。
例如,这是我有的两个列表:
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']]
我的代码有许多不友好的嵌套条件——如果有人有一个干净的方法来实现目标,我将不胜感激!
大话西游666
相关分类