Python 3 – List extend() 方法
描述
extend() 方法将 seq 中的内容附加到 list 中。
语法
下面是 extend() 的语法 −
list.extend(seq)
参数
seq − 这是元素的列表。
返回值
此方法不返回任何值,但将内容添加到现有列表中。
示例
下面的示例展示了 extend() 方法的用法。
#!/usr/bin/python3
list1 = ['physics', 'chemistry', 'maths']
list2 = list(range(5)) #creates list of numbers between 0-4
list1.extend(list2)
print ('Extended List :', list1)
结果
运行上述程序时,将产生以下结果−
Extended List : ['physics', 'chemistry', 'maths', 0, 1, 2, 3, 4]