[转载] Python列表操作

参考链接: Python中的基本运算符

Python列表: 序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推; Python有6个序列的内置类型,但最常见的是列表和元组; 序列都可以进行的操作包括索引,切片,加,乘,检查成员; 此外,Python已经内置确定序列的长度以及确定最大和最小的元素的方法; 列表是最常用的Python数据类型,它可以作为一个方括号内的逗号分隔值出现; 列表的数据项不需要具有相同的类型; 列表(list)是Python以及其他语言中最常用到的数据结构之一。python使用中括号[]来解析列表。列表是可变的(mutable)–可以改变列表的内容; 

本章涉及到: append(),inster(),remove(),del,pop,count,extend,index,reverse,sort,tup元祖 

常用的列表操作符 1)+:它主要实现的是多个列表之间的拼接 2)*:主要实现的是列表的复制和添加 3)比较>,<:主要进行数据型列表的元素比较 4)and等:;逻辑运算符,可以进行列表之间的逻辑判断 一、增加元素: 1、append() append()对于列表的操作主要实现的是在特定的列表最后添加一个元素,并且只能一次添加一个元素,并且只能在列表最后; 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> a.append('xuan')

>>> print(a)

['zhangsan', 'lisi', 'wangwu', 'zhaoliu', 'xuan']

 

2、inster() inster() 对于列表的操作主要是在列表的特定位置添加想要添加的特定元素,也就是将对象插入到列表中; 

>>> a.insert(2,'jiang')

>>> print(a)

['zhangsan', 'lisi', 'jiang', 'wangwu', 'zhaoliu', 'xuan']

 

二、删除元素: 1、a.remove() a.remove的作用是移除掉列表a里面的特定元素; 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> a.remove('lisi')

>>> print(a)

['zhangsan', 'wangwu', 'zhaoliu']

 

2、del a[n] 它的作用是删除掉列表里面的索引号位置为n 的元素,这里需要注意的是del是一种操作语句; 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> del a[3]

>>> print(a)

['zhangsan', 'lisi', 'wangwu']

 

3、a.pop() 它的作用是将列表a的最后一个元素返回,并且在此基础上进行删除掉; 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> a.pop()

'zhaoliu'

>>> print(a)

['zhangsan', 'lisi', 'wangwu']

 

三、修改(重新赋值): 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> a[3]='xuan'

>>> a[0:2]=['hello','world']

>>> print(a)

['hello', 'world', 'wangwu', 'xuan']

 

四、查询实例: 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> print(a[2])

wangwu

>>> print(a[0:3])

['zhangsan', 'lisi', 'wangwu']

>>> print(a[-1])

zhaoliu

>>> print(a[2:3])

['wangwu']

>>> print(a[0:3:1])

['zhangsan', 'lisi', 'wangwu']

>>> print(a[3:0:-1])

['zhaoliu', 'wangwu', 'lisi']

>>> print(a[:])

['zhangsan', 'lisi', 'wangwu', 'zhaoliu']

 

五、count: count方法统计某个元素在列表中出现的次数; 

>>> a = ['one','one','root','and','or','one']

>>> a.count('one')

3

>>> x = [[1,2],1,1,[2,[1,2]]]

>>> x.count(1)

2

>>> x.count([1,2])

1

 

六、extend: extend方法可以在列表的末尾一次性追加另一个序列中的多个值; 

>>> a = [1,2,3]

>>> b = [4,5,6]

>>> a.extend(b)

>>> a

[1, 2, 3, 4, 5, 6]

>>> b

[4, 5, 6]

 

extend方法修改了被扩展的列表,而原始的连接操作(+)则不然,它会返回一个全新的列表; 

>>> a = [1,2,3]

>>> b = [4,5,6]

>>> a + b

[1, 2, 3, 4, 5, 6]

>>> a

[1, 2, 3]

>>> b

[4, 5, 6]

 

七、index: index方法用于从列表中找出某个值第一个匹配项的索引位置; 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> a.index('lisi')

1

>>> a.index('zhaoliu')

3

 

八、reverse: reverse方法将列表中的元素反向存放; 

>>> a = ['zhangsan','lisi','wangwu','zhaoliu']

>>> a.reverse()

>>> print(a)

['zhaoliu', 'wangwu', 'lisi', 'zhangsan']

 

九、sort: sort方法用于在原位置对列表进行排序; 

>>> x = [4,6,2,8,3,9,0]

>>> x.sort()

>>> print(x)

[0, 2, 3, 4, 6, 8, 9]

>>> x.sort(reverse = True)        #sort和reverse组合

>>> print(x)

[9, 8, 6, 4, 3, 2, 0]

 

十、tuple(元祖),不可变的,但可以包括可变对象; tup1 = () #空元祖; tup2 = (19,) #一个元素,需要在元素后添加逗号; 1,对于一些不希望被修改的数据可以使用元祖; 2、元祖可以映射(和集合的成员)中当做键使用–而列表则不行; 元祖作为很多内键函数的方法的返回值存在;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540540.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

「原创」从马云、马化腾、李彦宏的对话,看出三人智慧差在哪里?

在今年中国IT领袖峰会上&#xff0c;马云、马化腾、李彦宏第一次单独合影&#xff0c;同框画面可以说很难得了。BAT关心的走势一直是同行们竞相捕捉的热点&#xff0c;所以三位大Boss在这次大会上关于人工智能的见解&#xff0c;也受到广泛关注与多方解读。马云认为机器比人聪明…

python 注释含注释_Python注释

python 注释含注释Python注释 (Python comments) Comments in Python are used to improve the readability of the code. It is useful information given by the programmer in source code for a better understanding of code and logic that they have used to solve the …

C2的完整形式是什么?

C2&#xff1a;核心2 (C2: Core 2) C2 is an abbreviation of "Core 2" or "Intel Core 2". C2是“ Core 2”或“ Intel Core 2”的缩写 。 It is a family of Intels processor which was launched on the 27th of July, 2006. It comprises a series of…

scala特性_Scala | 特性应用

scala特性特性应用 (Trait App) Scala uses a trait called "App" which is used to convert objects into feasible programs. This conversion is done using the DelayedInit and the objects are inheriting the trait named App will be using this function. T…

[转载] Python3中的表达式运算符

参考链接&#xff1a; Python中的除法运算符 1&#xff1a;Python常用表达式运算符 yield 生成器函数send协议 lambda args:expression 创建匿名函数 x if y else z 三元选择表达式(当y为真时&#xff0c;x才会被计算) x or y 逻辑或(仅但x为假时y才会被计算) x and …

字符串矩阵转换成长字符串_字符串矩阵

字符串矩阵转换成长字符串Description: 描述&#xff1a; In this article, we are going to see how backtracking can be used to solve following problems? 在本文中&#xff0c;我们将看到如何使用回溯来解决以下问题&#xff1f; Problem statement: 问题陈述&#xf…

pythonchallenge_level2

level2 地址&#xff1a;http://www.pythonchallenge.com/pc/def/ocr.html。 源码&#xff1a;gitcode.aliyun.com:qianlizhixing12/PythonChallenge.git。 问题&#xff1a;找出页面源码一点提示注释中的稀有字符。 #!/usr/bin/env python3 # -*- coding:UTF-8 -*-# Level 2im…

[转载] python类运算符的重载

参考链接&#xff1a; Python中的运算符重载 alist input().split() blist input().split() n float(input()) class Vector: def __init__(self, x0, y0, z0): # 请在此编写你的代码(可删除pass语句) self.X x self.Y y self.Z z # 代码结束 def __add__(self, other):…

r语言 运算符_R语言运算符

r语言 运算符R语言中的运算符 (Operators in R Language) Generally speaking, an operator is a symbol that gives proper commands to the compiler regarding a specific action to be executed. The operators are used for carrying out the mathematical or logical cal…

[转载] Python基础之类型转换与算术运算符

参考链接&#xff1a; Python中的运算符函数| 1 一、注释 1.注释&#xff1a;对程序进行标注和说明&#xff0c;增加程序的可读性。程序运行的时候会自动忽略注释。 2.单行注释&#xff1a;使用#的形式。但是#的形式只能注释一行&#xff0c;如果有多行&#xff0c;就不方便…

java awt 按钮响应_Java AWT按钮

java awt 按钮响应The Button class is used to implement a GUI push button. It has a label and generates an event, whenever it is clicked. As mentioned in previous sections, it extends the Component class and implements the Accessible interface. Button类用于…

解决“由于应用程序的配置不正确,应用程序未能启动,重新安装应用程序可能会纠正这个问题”...

在VS2005下用C写的程序&#xff0c;在一台未安装VS2005的系统上&#xff0c; 用命令行方式运行&#xff0c;提示&#xff1a; “系统无法执行指定的程序” 直接双击运行&#xff0c;提示&#xff1a; “由于应用程序的配置不正确&#xff0c;应用程序未能启动&#xff0c;重新安…

qgis在地图上画导航线_在Laravel中的航线

qgis在地图上画导航线For further process we need to know something about it, 为了进一步处理&#xff0c;我们需要了解一些有关它的信息&#xff0c; The route is a core part in Laravel because it maps the controller for sending a request which is automatically …

Logistic回归和SVM的异同

这个问题在最近面试的时候被问了几次&#xff0c;让谈一下Logistic回归&#xff08;以下简称LR&#xff09;和SVM的异同。由于之前没有对比分析过&#xff0c;而且不知道从哪个角度去分析&#xff0c;一时语塞&#xff0c;只能不知为不知。 现在对这二者做一个对比分析&#xf…

[转载] python学习笔记2--操作符,数据类型和内置功能

参考链接&#xff1a; Python中的Inplace运算符| 1(iadd()&#xff0c;isub()&#xff0c;iconcat()…) 什么是操作符&#xff1f; 简单的回答可以使用表达式4 5等于9&#xff0c;在这里4和5被称为操作数&#xff0c;被称为操符。 Python语言支持操作者有以下几种类型。 算…

scala bitset_Scala中的BitSet

scala bitsetScala BitSet (Scala BitSet) Set is a collection of unique elements. 集合是唯一元素的集合。 Bitset is a set of positive integers represented as a 64-bit word. 位集是一组表示为64位字的正整数。 Syntax: 句法&#xff1a; var bitset : Bitset Bits…

构建安全网络 比格云全系云产品30天内5折购

一年之计在于春&#xff0c;每年的三、四月&#xff0c;都是个人创业最佳的起步阶段&#xff0c;也是企业采购最火热的时期。为了降低用户的上云成本&#xff0c;让大家能无门槛享受到优质高性能的云服务&#xff0c;比格云从3月16日起&#xff0c;将上线“充值30天内&#xff…

python中 numpy_Python中的Numpy

python中 numpyPython中的Numpy是什么&#xff1f; (What is Numpy in Python?) Numpy is an array processing package which provides high-performance multidimensional array object and utilities to work with arrays. It is a basic package for scientific computati…