Python 列表 insert() 方法

Posted Enjoy Everyday!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 列表 insert() 方法相关的知识,希望对你有一定的参考价值。

 

 

正文

描述

Python 列表 insert() 方法将指定对象插入到列表中的指定位置。

语法

insert() 方法语法:

1
L.insert(index,obj)

参数

  • index -- 对象obj需要插入的索引值。
  • obj -- 要插入列表中的对象。

返回值

该方法没有返回值,但会在列表指定位置插入指定对象。

实例

以下实例展示了 insert() 方法的使用方法:

1
2
3
4
5
#!/usr/bin/python3
 
L1 = [\'Google\'\'Runoob\'\'Taobao\']
L1.insert(1\'Baidu\')
print (\'列表插入元素后为 : \', L1)

以上实例输出结果如下:

1
列表插入元素后为 :  [\'Google\'\'Baidu\'\'Runoob\'\'Taobao\']
 
分类

以上是关于Python 列表 insert() 方法的主要内容,如果未能解决你的问题,请参考以下文章

Python基础课:列表方法append(), insert(), extend()

Python学习之路:列表(List)的append()extend()与insert()方法

Python insert()方法插入元素

python中insert用法是什么

13 个非常有用的 Python 代码片段

Python列表的增删改查