python insert函数是什么?【python insert函数用法实例】

927次阅读
没有评论

python

python insert函数概念

python insert函数用于将指定对象插入列表的指定位置。python的insert函数中有两个必填参数,第一个是填充的位置,第二个是填充的内容。必须有小数点,不然报错。一般用1.0,就是往下面一行行的写。

python insert函数语法

list.insert(index, obj)

python insert函数参数

Index,对象obj需要插入的索引位置。

Obj,要插入列表中的对象。

python insert函数返回值

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

python insert函数实例

#!/usr/bin/python
A = [1,2,3,4,5,6,8]
A.insert( 6, 7)
print(A)
#result:
#[1,2,3,4,5,6,7,8]

以上就是python insert函数的介绍,在插入列表元素时会经常使用到,大家学会后也赶快试试吧。

(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-04-30发表,共计438字。
新手QQ群:570568346,欢迎进群讨论 Python51学习