Python List insert()方法
Python List insert()方法
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 OS 文件/目錄方法
- Python 操作 MySQL 數據庫
- Python 數組
- Python 排序算法
- Python3 解釋器
- Python3 for while 循環語句
- Python log() 函數
- Python File readlines() 方法
- Python os.chown() 方法
- Python os.fdopen() 方法
- Python os.fpathconf() 方法
- Python os.lchown() 方法
- Python os.ttyname() 方法
- Python isalpha()方法
- Python lower()方法
- Python rfind()方法
- Python List count()方法
- Python List insert()方法
- Python List sort()方法
- Python Tuple 元組 max()方法