全网整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:400-708-3566

Python 中 list 的各项操作技巧

最近在学习 python 语言。大致学习了 python 的基础语法。觉得 python 在数据处理中的地位和它的 list 操作密不可分。

特学习了相关的基础操作并在这里做下笔记。

'''
Python --version Python 2.7.11
Quote : https://docs.python.org/2/tutorial/datastructures.html#more-on-lists
Add by camel97 2017-04
'''
list.append(x) #在列表的末端添加一个新的元素
Add an item to the end of the list; equivalent to a[len(a):] = [x].

list.extend(L)#将两个 list 中的元素合并到一起

Extend the list by appending all the items in the given list; equivalent to a[len(a):] = L.

list.insert(i, x)#将元素插入到指定的位置(位置为索引为 i 的元素的前面一个)
Insert an item at a given position. The first argument is the index of the element before which to insert, so a.insert(0, x) inserts at the front of the list, and a.insert(len(a), x) is equivalent to a.append(x).

list.remove(x)#删除 list 中第一个值为 x 的元素(即如果 list 中有两个 x , 只会删除第一个 x )

Remove the first item from the list whose value is x. It is an error if there is no such item.

list.pop([i])#删除 list 中的第 i 个元素并且返回这个元素。如果不给参数 i ,将默认删除 list  中最后一个元素
Remove the item at the given position in the list, and return it. If no index is specified, a.pop() removes and returns the last item in the list. (The square brackets around the i in the method signature denote that the parameter is optional, not that you should type square brackets at that position. You will see this notation frequently in the Python Library Reference.)

list.index(x)#返回 list 中 , 值为 X 的元素的索引

   Return the index in the list of the first item whose value is x. It is an error if there is no such item.

list.count(x)#返回 list 中 , 值为 x 的元素的个数

Return the number of times x appears in the list.

demo:

#-*-coding:utf-8-*-
L = [1,2,3]   #创建 list 
L2 = [4,5,6]
print L
L.append(6)   #添加
print L
L.extend(L2) #合并
print L
L.insert(0,0) #插入
print L
L.remove(6)   #删除
print L
L.pop()     #删除
print L
print L.index(2)#索引
print L.count(2)#计数
L.reverse()   #倒序
print L

result:

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

list.sort(cmp=None, key=None, reverse=False)

  Sort the items of the list in place (the arguments can be used for sort customization, see sorted() for their explanation).

1.对一个 list 进行排序。默认按照从小到大的顺序排序

L = [2,5,3,7,1]
L.sort()
print L
==>[1, 2, 3, 5, 7]
L = ['a','j','g','b']
L.sort()
print L
==>['a', 'b', 'g', 'j']

2.reverse 是一个 bool 值. 默认为 False , 如果把它设置为 True, 那么这个 list 中的元素将会被按照相反的比较结果(倒序)排列.

#  reverse is a boolean value. If set to True, then the list elements are sorted as if each comparison were reversed.

L = [2,5,3,7,1]
L.sort(reverse = True)
print L
==>[7, 5, 3, 2, 1]
L = ['a','j','g','b']
L.sort(reverse = True)
print L
==>['j', 'g', 'b', 'a']

3.key 是一个函数 , 它指定了排序的关键字 , 通常是一个 lambda 表达式 或者 是一个指定的函数

#key specifies a function of one argument that is used to extract a comparison key from each list element: key=str.lower. The default value is None (compare the elements directly).

#-*-coding:utf-8-*-
#创建一个包含 tuple 的 list 其中tuple 中的三个元素代表名字 , 身高 , 年龄
students = [('John', 170, 15), ('Tom', 160, 12), ('Dave', 180, 10)]
print students
==>[('John', 170, 15), ('Tom', 160, 12), ('Dave', 180, 10)]
students.sort(key = lambda student:student[0])
print students
==>[('Dave', 180, 10), ('John', 170, 15), ('Tom', 160, 12)]#按名字(首字母)排序
students.sort(key = lambda student:student[1])
print students
==>[('Tom', 160, 12), ('John', 170, 15), ('Dave', 180, 10)]#按身高排序
students.sort(key = lambda student:student[2])
print students
==>[('Dave', 180, 10), ('Tom', 160, 12), ('John', 170, 15)]#按年龄排序

4.cmp 是一个指定了两个参数的函数。它决定了排序的方法。

#cmp specifies a custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first #argument is considered smaller than, equal to, or larger than the second argument: cmp=lambda x,y: cmp(x.lower(), y.lower()). The default value is None.

#-*-coding:utf-8-*-
students = [('John', 170, 15), ('Tom', 160, 12), ('Dave', 180, 10)]
print students
==>[('John', 170, 15), ('Tom', 160, 12), ('Dave', 180, 10)]
#指定 用第一个字母的大写(ascii码)和第二个字母的小写(ascii码)比较
students.sort(cmp=lambda x,y: cmp(x.upper(), y.lower()),key = lambda student:student[0])
print students
==>[('Dave', 180, 10), ('Tom', 160, 12), ('John', 170, 15)]
#指定 比较两个字母的小写的 ascii 码值
students.sort(cmp=lambda x,y: cmp(x.lower(), y.lower()),key = lambda student:student[0])
print students
==>[('Dave', 180, 10), ('John', 170, 15), ('Tom', 160, 12)]
#cmp(x,y) 是python内建立函数,用于比较2个对象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1

cmp 可以让用户自定义大小关系。平时我们认为 1 < 2 , 认为 a < b。

现在我们可以自定义函数,通过自定义大小关系(例如 2 < a < 1 < b) 来对 list 进行指定规则的排序。

当我们在处理某些特殊问题时,这往往很有用。

以上所述是小编给大家介绍的Python 中 list 的各项操作技巧,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!


# python  # list  # 操作  # Python 列表(List)操作方法详解  # Python中给List添加元素的4种方法分享  # python中list常用操作实例详解  # Python列表(list)常用操作方法小结  # Python实现两个list对应元素相减操作示例  # python对list中的每个元素进行某种操作的方法  # 是一个  # 第一个  # 自定义  # 值为  # 小编  # 将会  # 在此  # 中有  # 并在  # 把它  # 我们可以  # 只会  # 第二个  # 给大家  # 密不可分  # 数据处理  # 不给  # 当我们  # 设置为  # 所述 


相关文章: 如何在云指建站中生成FTP站点?  如何在万网开始建站?分步指南解析  股票网站制作软件,网上股票怎么开户?  公司网站制作需要多少钱,找人做公司网站需要多少钱?  如何零成本快速生成个人自助网站?  建站之星安装步骤有哪些常见问题?  如何选择适合PHP云建站的开源框架?  再谈Python中的字符串与字符编码(推荐)  广州建站公司哪家好?十大优质服务商推荐  网站制作软件有哪些,制图软件有哪些?  如何在阿里云服务器自主搭建网站?  做企业网站制作流程,企业网站制作基本流程有哪些?  如何通过cPanel快速搭建网站?  建站主机与服务器功能差异如何区分?  免费制作统计图的网站有哪些,如何看待现如今年轻人买房难的情况?  ,购物网站怎么盈利呢?  如何通过.red域名打造高辨识度品牌网站?  建站之星在线客服如何快速接入解答?  建站之星体验版:智能建站系统+响应式设计,多端适配快速建站  合肥做个网站多少钱,合肥本地有没有比较靠谱的交友平台?  如何注册花生壳免费域名并搭建个人网站?  JS中使用new Date(str)创建时间对象不兼容firefox和ie的解决方法(两种)  建站一年半SEO优化实战指南:核心词挖掘与长尾流量提升策略  建站之星安装提示数据库无法连接如何解决?  已有域名和空间如何搭建网站?  网站制作的方法有哪些,如何将自己制作的网站发布到网上?  Python路径拼接规范_跨平台处理说明【指导】  在线ppt制作网站有哪些软件,如何把网页的内容做成ppt?  相亲简历制作网站推荐大全,新相亲大会主持人小萍萍资料?  网站代码制作软件有哪些,如何生成自己网站的代码?  惠州网站建设制作推广,惠州市华视达文化传媒有限公司怎么样?  视频网站app制作软件,有什么好的视频聊天网站或者软件?  利用JavaScript实现拖拽改变元素大小  威客平台建站流程解析:高效搭建教程与设计优化方案  ,制作一个手机app网站要多少钱?  交易网站制作流程,我想开通一个网站,注册一个交易网址,需要那些手续?  济南专业网站制作公司,济南信息工程学校怎么样?  怎么将XML数据可视化 D3.js加载XML  大连网站制作公司哪家好一点,大连买房网站哪个好?  如何确保FTP站点访问权限与数据传输安全?  如何快速搭建虚拟主机网站?新手必看指南  如何在服务器上三步完成建站并提升流量?  外贸公司网站制作哪家好,maersk船公司官网?  制作充值网站的软件,做人力招聘为什么要自己交端口钱?  建站中国官网:模板定制+SEO优化+建站流程一站式指南  如何基于云服务器快速搭建网站及云盘系统?  如何选择可靠的免备案建站服务器?  制作企业网站建设方案,怎样建设一个公司网站?  如何构建满足综合性能需求的优质建站方案?  测试制作网站有哪些,测试性取向的权威测试或者网站? 

您的项目需求

*请认真填写需求信息,我们会在24小时内与您取得联系。