Python中insert用法及實戰案例!
Python中insert用法是什麼?這篇文章為大家詳細的講解一下Python中insert用法,並附帶實戰案例,希望能夠給你們帶來幫助。
描述:
insert()函式用於將指定物件插入列表的指定位置。
語法:
inser()方法語法:
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']
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952527/viewspace-2932127/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python執行緒池 ThreadPoolExecutor 的用法及實戰Python執行緒thread
- mysql中last_insert_id()用法MySqlAST
- insert all和insert first語句的用法
- Python實戰小案例,值得收藏!Python
- mysql insert的特殊用法MySql
- Python 中 key 引數的含義及用法Python
- Python中key引數的含義及用法Python
- Oracle中的insert/insert all/insert firstOracle
- Python-split()函式用法及簡單實現Python函式
- Chrome 外掛特性及實戰場景案例分析Chrome
- Python實戰案例彙總,帶你輕鬆從入門到實戰Python
- Oracle批量插入資料insert all into用法Oracle
- Flutter實戰】文字元件及五大案例Flutter字元元件
- Nmap在實戰中的高階用法(詳解)
- 視訊教程-Python機器學習經典案例實戰-PythonPython機器學習
- python @pytest.fixture示例及用法Python
- Python爬蟲 ---scrapy框架初探及實戰Python爬蟲框架
- Python中threading的join和setDaemon的區別及用法[例子]Pythonthread
- python中if語句的用法及if-else結構的使用Python
- python中return的用法Python
- python中的eval用法Python
- Python中if的基本用法Python
- [MySql]explain用法及實踐MySqlAI
- WinDbg(3)實戰案例
- Sharding JDBC案例實戰JDBC
- Python eval的用法及注意事項Python
- Python assert斷言函式及用法Python函式
- Python環境安裝及資料基本預處理-大資料ML樣本集案例實戰Python大資料
- select into from 和 insert into select 的用法和區別
- Python基礎演算法庫及視覺化庫使用實踐-大資料ML樣本集案例實戰Python演算法視覺化大資料
- Python求10個數的平均數實戰案例講解!Python
- 【Flutter實戰】定位裝飾權重元件及柱狀圖案例Flutter元件
- Python中return self的用法Python
- python 中 pipenv 用法筆記Python筆記
- Python中Collections.counter用法Python
- C#中?和??及?:的用法C#
- JQuery8:實戰案例jQuery
- JavaScript8:實戰案例JavaScript