我有一个python列表
list2 = ['three', 'four', 'five']
我想将其与声明的新内容合并
list1 = ['one', 'two', list2, 'six']
取
的结果['one', 'two', 'three', 'four', 'five', 'six']
代替
['one', 'two', ['three', 'four', 'five'], 'six']
在声明行中可以吗?
答案 0 :(得分:1)
您可以打开列表包装。
例如:
list2 = ['three', 'four', 'five']
list1 = ['one', 'two', *list2, 'six']
print(list1)
输出:
['one', 'two', 'three', 'four', 'five', 'six']