在本教程中,我們將借助示例了解 Python List insert() 方法。
insert()
方法將元素插入到列表中指定索引處。
示例
# create a list of vowels
vowel = ['a', 'e', 'i', 'u']
# 'o' is inserted at index 3 (4th position)
vowel.insert(3, 'o')
print('List:', vowel)
# Output: List: ['a', 'e', 'i', 'o', 'u']
用法:
insert()
方法的語法是
list.insert(i, elem)
在這裏,elem
被插入到 ith
索引處的列表中。 elem
之後的所有元素都向右移動。
參數:
insert()
方法有兩個參數:
- index- 需要插入元素的索引
- element- 這是要插入到列表中的元素
注意:
- 如果
index
為0,則將元素插入到列表的開頭。 - 如果
index
為 3,則插入元素的索引將為 3(列表中的第 4 個元素)。
返回:
insert()
方法不返回任何內容;返回 None
。它隻更新當前列表。
示例 1:將元素插入列表
# create a list of prime numbers
prime_numbers = [2, 3, 5, 7]
# insert 11 at index 4
prime_numbers.insert(4, 11)
print('List:', prime_numbers)
輸出
List: [2, 3, 5, 7, 11]
示例 2:將元組(作為元素)插入列表
mixed_list = [{1, 2}, [5, 6, 7]]
# number tuple
number_tuple = (3, 4)
# inserting a tuple to the list
mixed_list.insert(1, number_tuple)
print('Updated List:', mixed_list)
輸出
Updated List: [{1, 2}, (3, 4), [5, 6, 7]]
相關用法
- Python List index()用法及代碼示例
- Python List remove()用法及代碼示例
- Python List clear()用法及代碼示例
- Python List reverse()用法及代碼示例
- Python List append()用法及代碼示例
- Python List cmp()用法及代碼示例
- Python List pop()用法及代碼示例
- Python List sort()用法及代碼示例
- Python List list()用法及代碼示例
- Python List max()用法及代碼示例
- Python List count()用法及代碼示例
- Python List len()用法及代碼示例
- Python List min()用法及代碼示例
- Python List copy()用法及代碼示例
- Python List extend()用法及代碼示例
- Python Lock acquire()用法及代碼示例
- Python Lock release()用法及代碼示例
- Python Lock locked()用法及代碼示例
- Python torch.distributed.rpc.rpc_async用法及代碼示例
- Python torch.nn.InstanceNorm3d用法及代碼示例
注:本文由純淨天空篩選整理自 Python List insert()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。