在Python中,可以使用"+"運算符將兩個列表合并在一起。例如:
list1 = [1, 2, 3]
list2 = [4, 5, 6]
merged_list = list1 + list2
print(merged_list)
輸出:
[1, 2, 3, 4, 5, 6]
另外,還可以使用extend()方法將一個列表的元素添加到另一個列表中。例如:
list1 = [1, 2, 3]
list2 = [4, 5, 6]
list1.extend(list2)
print(list1)
輸出:
[1, 2, 3, 4, 5, 6]