gpt4 book ai didi

python - 如何将列表的单个元素添加到 python 中的另一个列表中?

转载 作者:行者123 更新时间:2023-11-28 22:17:06 24 4
gpt4 key购买 nike

例如我有下面的列表

list1 = [] 
list2 = ['cat', 'tiger']

我只想将 list2 中的单个元素添加到 list1 中。例如,

list1.append(['wolf', list2])

想要这样的输出

[[wolf, cat, tiger]]

但我反而喜欢,

[['wolf', ['cat', 'tiger']]]

我不希望 list2 本身附加有括号,而只是 list2 中的元素。我错过了什么吗?请添加您的意见。这只是一个更大问题的示例。

最佳答案

使用解包

>>> list1.append(['wolf', *list2])

[['wolf', 'cat', 'tiger']]

以防python2

>>> list1.append(['wolf'] + list2)

关于python - 如何将列表的单个元素添加到 python 中的另一个列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51623730/

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