在本教程中,我们将借助示例了解 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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。