正文
描述
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' ] |
C++ Primer: 1. 初识输入和输出
车牌识别1:License Plate Detection and Recognition in Unconstrained Scenarios阅读笔记
梳理检测论文-Refinement Neural Network
linux 的 磁盘管理
ubuntu 18 设置语言环境
Ubuntu 18.04 的网络配置
YoLo 实践(1)
Distributed TensorFlow
MXNet 分布式环境部署