扩展列表声明上的python列表元素,而不是追加

时间:2019-12-05 10:31:19

标签: python-3.x list

我有一个python列表

list2 = ['three', 'four', 'five']

我想将其与声明的新内容合并

list1 = ['one', 'two', list2, 'six']

的结果
['one', 'two', 'three', 'four', 'five', 'six']

代替

['one', 'two', ['three', 'four', 'five'], 'six']

在声明行中可以吗?

1 个答案:

答案 0 :(得分:1)

您可以打开列表包装。

例如:

list2 = ['three', 'four', 'five']
list1 = ['one', 'two', *list2, 'six']
print(list1)

输出:

['one', 'two', 'three', 'four', 'five', 'six']