码迷,mamicode.com
首页 > 编程语言 > 详细

Python 列表 insert() 方法

时间:2019-12-09 12:00:18      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:value   nta   index   索引   print   tab   pos   int   cells   

 

正文

描述

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() 方法

标签:value   nta   index   索引   print   tab   pos   int   cells   

原文地址:https://www.cnblogs.com/bensonyang/p/12010024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!