gpt4 book ai didi

python - 如何在Python中替换列表中的列表

转载 作者:太空宇宙 更新时间:2023-11-03 20:31:16 25 4
gpt4 key购买 nike

我有这个列表列表`

listoflist = [[['I', 'nvestment activity during the year is summarised as fol', 'l', 'ows:'],
['InterFace-Light', 'InterFace-Light', 'InterFace-Light', 'InterFace-Light'],
[[9.0], [9.0], [9.0], [9.0]]],
[(45.40929412841797, 167.94473266601562, 49.90929412841797, 178.0337371826172),
(47.360496520996094, 167.94473266601562, 241.59832763671875, 178.0337371826172),
(238.8065185546875, 167.94473266601562, 243.3065185546875, 178.0337371826172),
(240.51470947265625, 167.94473266601562, 259.0223083496094, 178.0337371826172)]]

[[['Cost'],
['InterFace-Bold'],
[[9.0]]],
[(526.6923828125, 189.15679931640625, 544.8453979492188, 199.52481079101562)]]

[[['Additions', '£’', '000'], ['InterFace-Bold', 'InterFace-Bold', 'InterFace-Bold'],
[[9.0], [9.0], [9.0]]],
[(56.747901916503906, 199.1571044921875, 95.19589233398438, 209.52511596679688),
(523.3358154296875, 199.1571044921875, 532.69580078125, 209.52511596679688),
(530.2658081054688, 199.1571044921875, 544.8457641601562, 209.52511596679688)]]]

我想将 listoflist[0][0][0] 替换为 ['年内投资事件总结如下:'], ['成本'], [ '添加','£'000']

这是我当前的代码:

new_list = [['Investment activity during the year is summarised as follows:'],
['Cost'],
['Additions', '£’000']]

for i in listoflist:
i[0].pop(0)
for ii in new_list:
i[0].insert(0, ii)

Replacing values in list of list Python没有帮助

最佳答案

根据您想要执行的操作(替换或插入),这里有两个选项:
插入:

for ls in listoflist:
ls.insert(0, "Investment activity during the year is summarised as follows:")

替换:

for ls in listoflist:
ls[0] = "Investment activity during the year is summarised as follows:"

编辑:
替换:

listoflist[0][0] = "value1"
listoflist[1][0] = "value2"
listoflist[2][0] = "value3"

插入:

listoflist[0].insert(0, "value1")

edit2:我想我终于明白你想做什么:

for ls in listoflist:
if ls[0] == ["I", "nvestment activity during the year is summarised as fol", "l", "ows:"]:
ls[0] = new_list[0]
elif ls[0][0] == ["Cost"]:
ls[0] = new_list[1]
elif ls[0][0] == ["Additions", "£’", "000"]:
ls[0] = new_list[2]

关于python - 如何在Python中替换列表中的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57491445/

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