Python 3 - 列表 extend() 方法

  • 描述

    extend()方法将 seq 的内容附加到列表中。
  • 句法

    以下是语法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]