python中insert函数怎么用_python insert_Python列表| 带示例的insert()方法-程序员宅基地

技术标签: python中insert函数怎么用  

python insert

list.insert()方法 (list.insert() Method)

insert() is an inbuilt method in python, which is used to add an element /item at specified index to the list.

insert()是python中的内置方法,用于将指定索引处的元素/ item添加到列表中。

insert() is able to add the element where we want i.e. position in the list, which we was not able to do the same in list.append() Method.

insert()能够将元素添加到我们想要的位置,即列表中的位置,而list.append()方法无法做到这一点 。

Syntax:

句法:

list.insert(index, element)

Here,

这里,

list is the name of the list. list是列表的名称。 index is the valid value of the position/index. index是头寸/索引的有效值。 element is an item/element to be inserted. 元素是要插入的项目/元素。

Return type: Method insert() does not return any value, it just modifies the existing list.

返回类型:方法insert()不返回任何值,它仅修改现有列表。

Program:

程序:

# Python program to demonstrate

# an example of list.insert() method

# list

cities = ['New Delhi', 'Mumbai']

# print the list

print "cities are: ",cities

# insert 'Bangalore' at 0th index

index = 0

cities.insert(index,'Bangalore')

# insert 'Chennai' at 2nd index

index = 2

cities.insert(index, 'Chennai')

# print the updated list

print "cities are: ",cities

Output

输出量

cities are:  ['New Delhi', 'Mumbai']

cities are:  ['Bangalore', 'New Delhi', 'Chennai', 'Mumbai']

Explanation:

说明:

Initially there were two elements in the list ['New Delhi', 'Mumbai']. 最初,列表中有两个元素['New Delhi','Mumbai'] 。 Then, we added two more city names (two more elements) - 1) 'Bangalore' at 0th index and 2) 'Chennai' at 2nd index after adding 'Bangalore' at 0th index, by using following python statements: :在0在第二索引处0添加“班加罗尔” 个索引,通过使用以下Python语句后1)“班加罗尔” 个索引和2)“奈” -然后,我们增加了两个城市名称(两个元件)

# insert 'Bangalore' at 0th index

index = 0

cities.insert(index, 'Bangalore')

# insert 'Chennai' at 2nd index

index = 2

cities.insert(index, 'Chennai')

After inserting 'Bangalore' at 0th index, the list will be ['Bangalore', 'New Delhi', 'Chennai']. 在第 0 个索引处插入“班加罗尔”后,列表将为['Bangalore','New Delhi','Chennai'] 。 And, then we added 'Chennai' at 2nd index. After inserting 'Chennai' at 2nd index. The list will be ['Bangalore', New Delhi', 'Chennai', 'Mumbai']. 然后,我们在第二个索引处添加了“ Chennai” 。 在第二个索引处插入“ Chennai”之后。 该列表将是['Bangalore',New Delhi','Chennai','Mumbai'] 。 So, it is at our hand, what we have to do? If our requirement is to add an element at the end of the list - use list.append() Method, or if our requirement is to add an element at any index (any specified position) - use list.insert() Method.

那么,这在我们眼前,我们该怎么办? 如果我们的要求是在列表的末尾添加一个元素-使用list.append()方法 ,或者我们的要求是在任何索引(任何指定位置)添加一个元素-使用list.insert()方法。

翻译自: https://www.includehelp.com/python/list-insert-method-with-example.aspx

python insert

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_33166692/article/details/112831544

智能推荐

JAVA基础-程序员宅基地

文章浏览阅读553次,点赞18次,收藏12次。帮助每一个需要帮助的人,共同进步,一起学习!!!

鸿蒙os 2.0玩吃鸡,成功更新鸿蒙OS2.0 极致画质吃鸡王者更胜EMUI11谷歌框架照样能用...-程序员宅基地

文章浏览阅读896次。王者荣耀算安卓,还是鸿蒙?一个安卓主题,被吹上天,我也是服气鸿蒙不是安卓拷贝,为啥这么像安卓?是双胞胎吗?兼容安卓,终究还是用安卓服务,还不如其他国产UI呢,你这又多道虚拟机,咋优化能超越直接用安卓?厉害,mate20X买了2年了,一直都是自带9.0,昨天升级了9.1,非常棒,天天都要打2把王者,推荐开极致模式,歪歪。支持华为一如既往毫不含糊。太牛了……秒杀iOS和安卓!但是我希望是真期待鸿蒙,手...

python实例-email: 示例 — Python 3.9.0 文档-程序员宅基地

文章浏览阅读257次。import osimport sysimport tempfileimport mimetypesimport webbrowser# Import the email modules we'll needfrom email import policyfrom email.parser import BytesParser# An imaginary module that would mak..._python email文档

sc19超级计算机,清华学生超算团队获国际大学生超级计算机竞赛(SC19)总冠军...-程序员宅基地

文章浏览阅读384次。美国当地时间11月21日下午,2019国际大学生超级计算机竞赛(SC19)总决赛在美国丹佛会展中心落下帷幕,由清华大学计算机系组建的清华大学学生超算团队夺得总冠军。这是清华大学在三大国际大学生超算竞赛中获得的第12个冠军。本次现场决赛共有来自7个国家的16支队伍参赛。代表清华参加此次比赛的队伍由6名来自计算机系的本科生组成,包括:何家傲(计62)、陈晟祺(计63)、黄可钊(计64)、郑立言(计64..._2019年11月21 世界超算

Java架构师之旅(二十七 混合编程)_java rmi python 混合-程序员宅基地

文章浏览阅读1.3k次,点赞2次,收藏7次。夜光序言:人要长大,就要学会思考。思考才能让人成熟、进步。修炼也是如此,闷头苦干只是机械重复而已。真正的进步是需要停一停,想一想,再继续前进~~正文:这里介绍一下混合编程~~Java混合编程 Java程序和其他应用程序进行通讯和数据交互 Java和Java/C/JS/Python/Web Service/命令行的混合编程RMI(1)Genius:回顾下学..._java rmi python 混合

快速ObjectC基本语法_objectc基础语法-程序员宅基地

文章浏览阅读664次。一.类的定义#import // 1@interfaceStudent : NSObject // 2 { int age ; NSString *name ; // 3} @property(nonatomic , retain) NSString *name ; // 4@property(nonatomic_objectc基础语法

随便推点

PASCAL Visual Object Classes Challenge 2007(VOC 2007)数据集预处理_voc2007 trainval 提取图片-程序员宅基地

文章浏览阅读1.4k次。VOC 2007[1] 是一个多标签数据集,有 20 类。这里为 multi-label classification 任务做预处理,包括:将图片移到同一个目录(方便读取);数据划分(本身就已经分好 train/val 和 test 两部分);处理标签。Prepare[1] 有下载链,train/val 450M,test 430M。下下来就是 VOCtrainval_06-Nov-2007.tar 和 VOCtest_06-Nov-2007.tar 两个文件。以 test set 的文件为例_voc2007 trainval 提取图片

【python常用函数】——小波变换_pywt.cwt-程序员宅基地

文章浏览阅读2.6k次。// An highlighted blockvar foo = 'bar';连续小波变换中可用的小波:**A wide range of continous wavelets are now available. These include the following:** Gaussian wavelets (gaus1…``gaus8``) Mexican hat wavelet (mexh) Morlet wavelet (morl) Complex Gaussian wavelet_pywt.cwt

root域名服务器 gtld服务器_小程序搭建第一环节:服务器和域名-程序员宅基地

文章浏览阅读112次。小程序搭建准备工作服务器和域名第一步购买服务器该文章中的图片均可点击放大查看目前腾讯双十一的活动还没结束,针对项目组新成员,下面这款香港服务器的宽带峰值能跑到30M,完全碾压其他千元活动服务器,性价比是最高的。备注:如果已经错过了这次活动,关于服务器的购买请微信联系我,我会帮忙找到当下最适合的服务器。这里购买一年的原价显示是288元,但是腾讯双十一活动针对这款服务器有隐藏的100元代金券..._root 使用 @ 域名

计算机毕业设计springboot大学生心理健康隐私保护系统98ruy9【附源码+数据库+部署+LW】_基于隐私保护的心理测评系统设计与实现-程序员宅基地

文章浏览阅读89次。选题背景:随着社会的发展和进步,大学生心理健康问题日益凸显。面对学业压力、人际关系、就业压力等多重困扰,大学生心理健康问题已成为一个亟待解决的社会问题。然而,由于传统的心理咨询方式存在诸多限制,如时间和空间的限制,导致许多大学生无法及时获得有效的心理支持和帮助。因此,开发一种基于Spring Boot的大学生心理健康隐私保护系统具有重要的现实意义。选题意义:首先,大学生心理健康隐私保护系统能够提供便捷的心理咨询服务。通过该系统,大学生可以随时随地进行在线咨询,无需受到时间和空间的限制。这将极大地方便_基于隐私保护的心理测评系统设计与实现

计算co1课程的平均成绩mysql_MySQL练习-程序员宅基地

文章浏览阅读1.7k次。一、表关系二、创建数据库和表(一)创建数据库创建数据库test2,用于存放上述表mysql> create database test2 defaultcharset utf8 collate utf8_general_ci;Query OK,1 row affected (0.00 sec)(二)创建表创建上述表以及相应的约束创建班级表mysql> create tableclass..._计算c01课程的平均成绩

2021-08-31通过altair来绘图_from vega_datasets import data-程序员宅基地

文章浏览阅读227次。1,散点import altair as alt# 加载可离线访问的数据集from vega_datasets import datasource = data.cars()alt.Chart(source).mark_circle(size=60).encode( x='Horsepower', y='Miles_per_Gallon', color='Origin', tooltip=['Name', 'Origin', 'Horsepower', .._from vega_datasets import data

推荐文章

热门文章

相关标签