gpt4 book ai didi

python - 如何取消合并 python 列表中的列表?

转载 作者:太空宇宙 更新时间:2023-11-04 07:40:42 24 4
gpt4 key购买 nike

我正在尝试弄清楚如何从列表中取消合并一堆列表。例如,来自

parent_list = [ [a, b, c], [d, e, f], [g, h, i] ]

child_list1 = [a, b, c]
child_list2 = [d, e, f]
child_list3 = [g, h, i]

最佳答案

使用unpacking :

>>> parent_list = [['a', 'b', 'c'], ['d', 'e', 'f'], ['g', 'h', 'i']]
>>> child_list1, child_list2, child_list3 = parent_list
>>> child_list1
['a', 'b', 'c']
>>> child_list2
['d', 'e', 'f']
>>> child_list3
['g', 'h', 'i']
>>>

关于python - 如何取消合并 python 列表中的列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22412839/

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