gpt4 book ai didi

python - 将多个列表合并到 1 个列表中

转载 作者:行者123 更新时间:2023-12-04 16:39:59 25 4
gpt4 key购买 nike

这是我拥有的:

list1 = ['a', 'b', 'c']
list2 = ['d', 'e', 'f']
list3 = ['g', 'h', 'i']

这就是我想要的:

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

如何解决这个问题?

最佳答案

要创建这样的列表列表,只需使用:

list4 = [list1, list2, list3]

关于python - 将多个列表合并到 1 个列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62932907/

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