gpt4 book ai didi

python - 用另一个列表的一些值 append 一个列表

转载 作者:行者123 更新时间:2023-11-28 20:15:50 25 4
gpt4 key购买 nike

我有一个列表列表 mainList。我希望在此列表中 append subList ,但仅 append 第 2、3、4、5 和 7 项。

for subList in file:
mainList.append(subList[#items 2,3,4,5,7])

还有什么办法可以做到这一点

for subList in file:
temp = []
for item in subList[1:]:
if #item not the 6th item:
temp.append(item)
mainList.append(temp)

我可以在没有 temp 列表和 append 此列表的嵌套 for 循环的情况下执行此操作吗?

最佳答案

我会这样做,简单且具有列表理解的 Pythonic:

indices = 2,3,4,5,7
mainList.append([sublist[i] for i in indices])

关于python - 用另一个列表的一些值 append 一个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45145939/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com