精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python List insert()方法

Python List insert()方法

Python 列表 ListPython 列表 List

insert() 函數用于將指定對象插入列表的指定位置。

 

語法

insert()方法語法:

list.insert(index, obj)

 

參數

  • index -- 對象 obj 需要插入的索引位置。
  • obj -- 要插入列表中的對象。

 

返回值

該方法沒有返回值,但會在列表指定位置插入對象。

 

實例

以下實例展示了 insert()函數的使用方法:

#!/usr/bin/python
 
aList = [123, 'xyz', 'zara', 'abc']
 
aList.insert( 3, 2009)
 
print "Final List : ", aList

以上實例輸出結果如下:

Final List : [123, 'xyz', 'zara', 2009, 'abc']

Python 列表 ListPython 列表 List

下一節:Python List pop()方法

Python 教程

相關文章