Python 的 list.insert(~)
方法將元素插入列表中指定索引處。
參數
1. index
| number
我們將在其之前插入新元素的元素的索引。
2. element
| any type
要插入到列表中的元素。
返回值
None
例子
要將 'banana'
插入到 fruits
列表中索引位置 1
( 'pear'
) 處的元素之前:
fruits = ['apple', 'pear', 'orange']
fruits.insert(1, 'banana')
print(fruits)
['apple', 'banana', 'pear', 'orange']
我們可以看到'banana'
被插入到之前占據索引位置1的'pear'
之前。
相關用法
- Python List insert()用法及代碼示例
- Python List index()用法及代碼示例
- Python List index方法用法及代碼示例
- Python List remove()用法及代碼示例
- Python List clear()用法及代碼示例
- Python List reverse()用法及代碼示例
- Python List copy方法用法及代碼示例
- Python List sort方法用法及代碼示例
- Python List extend方法用法及代碼示例
- Python List append()用法及代碼示例
- Python List cmp()用法及代碼示例
- Python List remove方法用法及代碼示例
- Python List append方法用法及代碼示例
- Python List pop()用法及代碼示例
- Python List sort()用法及代碼示例
- Python List pop方法用法及代碼示例
- Python List reverse方法用法及代碼示例
- Python List list()用法及代碼示例
- Python List max()用法及代碼示例
- Python List count()用法及代碼示例
- Python List len()用法及代碼示例
- Python List count方法用法及代碼示例
- Python List min()用法及代碼示例
- Python List clear方法用法及代碼示例
- Python List copy()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python List | insert method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。