赞
踩
list1 = [1, 2, 3]
list2 = [4, 5, 6]
combined_list = list1 + list2
print(combined_list) # Output: [1, 2, 3, 4, 5, 6]
list1 = [1, 2, 3]
list2 = [4, 5, 6]
list1.extend(list2)
print(list1) # Output: [1, 2, 3, 4, 5, 6]
list1 = [1, 2, 3]
list2 = [4, 5, 6]
combined_list = [x for x in list1] + [y for y in list2]
print(combined_list) # Output: [1, 2, 3, 4, 5, 6]
import itertools
list1 = [1, 2, 3]
list2 = [4, 5, 6]
combined_list = list(itertools.chain(list1, list2))
print(combined_list) # Output: [1, 2, 3, 4, 5, 6]
list1 = [1, 2, 3]
list2 = [4, 5, 6]
combined_list = sum([list1, list2], [])
print(combined_list) # Output: [1, 2, 3, 4, 5, 6]
这些都是常见的列表组合方式,每种方式都有自己的特点和适用场景。
使用 + 运算符和 extend() 方法是最简单直观的方式。
使用列表推导式可以提供更灵活的组合逻辑。
itertools.chain() 函数适用于组合多个可迭代对象。
使用 sum() 函数和 [[]] 语法可以方便地组合嵌套列表。
具体选择哪种方式,需要根据具体的需求和代码上下文来决定。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。