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

python中insert用法是什么

时间:2020-01-06 14:39:56      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:div   插入对象   insert   列表   str   nal   插入   --   返回值   

描述

insert() 函数用于将指定对象插入列表的指定位置。

语法

insert()方法语法:

list.insert(index, obj)

  

参数

index -- 对象 obj 需要插入的索引位置。

obj -- 要插入列表中的对象。

返回值

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

实例

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

#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘]
aList.insert( 3, 2009) 
print "Final List : ", aList

  以上实例输出结果如下:

Final List : [123, ‘xyz‘, ‘zara‘, 2009, ‘abc‘]

  

python中insert用法是什么

标签:div   插入对象   insert   列表   str   nal   插入   --   返回值   

原文地址:https://www.cnblogs.com/daniumiqi/p/12155975.html

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