在Python中,可以使用"+"运算符来合并多个列表。以下是几种常用的方法:
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
merged_list = list1 + list2
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
list1.extend(list2)
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
for item in list2:
list1.append(item)
无论使用哪种方法,上述代码的输出结果都是 [1, 2, 3, 'a', 'b', 'c']
,即将两个列表合并成一个新的列表。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python wait函数怎么调用