python中insert()函数的用法_Python list insert()用法及代码示例

insert()是Python中的内置函数,可将给定元素插入列表中的给定索引。

用法:

list_name.insert(index, element)

参数:

index - the index at which the element has to be inserted.

element - the element to be inserted in the list.

返回值:

This method does not return any value but

it inserts the given element at the given index.

错误:

If anything other then a list is used with

insert(), then it returns an AttributeError.

注意:如果给定索引> = length(list),则它将插入列表的末尾。

代码1:

# Python3 program for use

# of insert() method

list1 = [ 1, 2, 3, 4, 5, 6, 7 ]

# insert 10 at 4th index

list1.insert(4, 10)

print(list1)

list2 = ['a', 'b', 'c', 'd', 'e']

# insert z at the front of the list

list2.insert(0, 'z')

print(list2)

输出:

[1, 2, 3, 4, 10, 5, 6, 7]

['z', 'a', 'b', 'c', 'd', 'e']

代码2:

# Python3 program for error

# of insert() method

# attribute error

string = "1234567"

string.insert(10, 1)

print(string)

输出:

Traceback (most recent call last):

File "/home/2fe54bd8723cd0ae89a17325da8b2eb5.py", line 7, in

string.insert(10, 1)

AttributeError:'str' object has no attribute 'insert'

实际应用:

在任何元素之前的列表中插入:

代码3:

# Python3 program for Insertion in a list

# before any element using insert() method

list1 = [ 1, 2, 3, 4, 5, 6 ]

# Element to be inserted

element = 13

# Element to be inserted before 3

beforeElement = 3

# Find index

index = list1.index(beforeElement)

# Insert element at beforeElement

list1.insert(index, element)

print(list1)

输出:

[1, 2, 13, 3, 4, 5, 6]

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值