【廖雪峰python入門筆記】list新增元素_append()和insert()
1. append()
現在,班裡有3名同學:
L = ['Adam', 'Lisa', 'Bart']
今天,班裡轉來一名新同學 Paul,如何把新同學新增到現有的 list 中呢?
第一個辦法是用 list 的 append()
方法,把新同學追加到 list 的末尾:
L = ['Adam', 'Lisa', 'Bart']
L.append('Paul')
print(L)
[‘Adam’, ‘Lisa’, ‘Bart’, ‘Paul’]
append()總是把新的元素新增到 list 的尾部
。
2. insert()
如果 Paul 同學表示自己總是考滿分,要求新增到第一的位置,怎麼辦?
方法是用list的insert()
方法,它接受兩個引數,第一個引數是索引號
,第二個引數是待新增的新元素
:
L = ['Adam', 'Lisa', 'Bart']
L.insert(0, 'Paul')
print(L)
[‘Paul’, ‘Adam’, ‘Lisa’, ‘Bart’]
L.insert(0, ‘Paul’) 的意思是,’Paul’將被新增到索引為 0 的位置上(也就是第一個),而原來索引為 0 的Adam同學,以及後面的所有同學,都自動向後移動一位。
相關文章
- 【廖雪峰python入門筆記】list刪除元素_pop()Python筆記
- 【廖雪峰python入門筆記】list_替換元素Python筆記
- 【廖雪峰python入門筆記】list_建立Python筆記
- 【廖雪峰python入門筆記】tuple_“元素可變”Python筆記
- 【廖雪峰python入門筆記】tuple_建立單元素Python筆記
- 【廖雪峰python入門筆記】break和continuePython筆記
- 【廖雪峰python入門筆記】list_按照索引訪問Python筆記索引
- 【廖雪峰python入門筆記】list_倒序訪問Python筆記
- 【廖雪峰python入門筆記】dictPython筆記
- 【廖雪峰python入門筆記】setPython筆記
- 【廖雪峰python入門筆記】切片Python筆記
- 【廖雪峰python入門筆記】迭代Python筆記
- 【廖雪峰python入門筆記】函式Python筆記函式
- 【廖雪峰python入門筆記】變數Python筆記變數
- 【廖雪峰python入門筆記】if語句Python筆記
- 【廖雪峰python入門筆記】for迴圈Python筆記
- 【廖雪峰python入門筆記】列表生成式Python筆記
- 【廖雪峰python入門筆記】tuple_建立Python筆記
- 【廖雪峰python入門筆記】while迴圈Python筆記While
- 【廖雪峰python入門筆記】多重迴圈Python筆記
- 【廖雪峰python入門筆記】raw 字串和多行字串表示Python筆記字串
- 【廖雪峰python入門筆記】整數和浮點數Python筆記
- 【廖雪峰python入門筆記】布林運算和短路計算Python筆記
- 【廖雪峰python入門筆記】字串_轉義字元的使用Python筆記字串字元
- 【廖雪峰python入門筆記】Unicode編碼_UnicodeDecodeError處理Python筆記UnicodeError
- 【廖雪峰python進階筆記】模組Python筆記
- 【廖雪峰python進階筆記】定製類Python筆記
- 【廖雪峰python進階筆記】類的繼承Python筆記繼承
- 20190228 學習筆記——廖雪峰 git筆記Git
- 【廖雪峰python進階筆記】物件導向程式設計Python筆記物件程式設計
- 【廖雪峰python進階筆記】函數語言程式設計Python筆記函數程式設計
- 跟著廖雪峰學python 005Python
- 廖雪峰Git學習筆記1-Git簡介Git筆記
- Python廖雪峰13個案例講解分析帶你全面入門人工智慧Python人工智慧
- Python入門筆記Python筆記
- Python 入門筆記Python筆記
- python入門筆記1Python筆記
- Python中tuple和list有什麼區別?Python入門!Python