1、join连接两个list列表
在Python中,有几种方法可以连接或连接两个或多个列表。
最简单的方法之一是使用+
运算符。
例如:
连接两个列表:
list1 = ["a", "b" , "c"] list2 = [1, 2, 3] list3 = list1 + list2 print(list3)
连接两个列表的另一种方法是将list2中的所有项一个接一个地追加到list1中:
例如:
将list2追加到list1中:
list1 = ["a", "b" , "c"] list2 = [1, 2, 3] for x in list2: list1.append(x) print(list1)
或者,可以使用extend()
方法,其目的是将一个列表中的元素添加到另一列表中:
例如:
使用extend()
方法将list2添加到list1的末尾:
list1 = ["a", "b" , "c"] list2 = [1, 2, 3] list1.extend(list2) print(list1)
相关文档: