位置: 编程技术 - 正文

Python 中 list 的各项操作技巧(python中list的用法例子)

编辑:rootadmin

推荐整理分享Python 中 list 的各项操作技巧(python中list的用法例子),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:python中list的索引,python中list的索引,python中list的sort方法,python中list的用法,python中list的功能,python中list的作用,python中list的用法和作用,python中list的用法,内容如对您有帮助,希望把文章链接给更多的朋友!

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

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

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:

Python 中 list 的各项操作技巧(python中list的用法例子)

result:

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 进行排序。默认按照从小到大的顺序排序

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.

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).

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.

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

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

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

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

Python+Wordpress制作小说站 我用Python和Wordpress建了一个小说站。下面主要讲一讲搭建过程中所用的技术。主要分为以下几个部分:Wordpress主题的选取小说内容的完善站点的部署微

python实现折半查找和归并排序算法 今天依旧是学算法,前几天在搞bbs项目,界面也很丑,评论功能好像也有BUG。现在不搞了,得学下算法和数据结构,笔试过不了,连面试的机会都没有

python编程实现归并排序 因为上个星期leetcode的一道题(MedianofTwoSortedArrays)所以想仔细了解一下归并排序的实现。还是先阐述一下排序思路:首先归并排序使用了二分法,归根到

标签: python中list的用法例子

本文链接地址:https://www.jiuchutong.com/biancheng/375511.html 转载请保留说明!

上一篇:python算法表示概念扫盲教程(python算法具有哪五个性质)

下一篇:Python+Wordpress制作小说站

  • 税收保全措施有金银首饰吗
  • 销售佣金 个税
  • 房租确认后能不退押金吗
  • 企业利润分配如何缴纳所得税
  • 哪些发票可以抵扣增值税
  • 计提工资和实际发放工资必须一致吗
  • 预收和应收可以冲销吗
  • 2019年地方各项基金费申报表填写错误要交滞纳金吗
  • 物业费专用发票税率
  • 没有认证的发票怎么做分录
  • 押金计入什么费用
  • 应交税费减免税款
  • 存货呆滞是什么意思
  • 购买日子公司账面价值调整为公允价值
  • 合法票据的利息计算方法
  • 父母的股权给子女可以怎样认证
  • 企业转让股权收入应于转让协议生效时确认收入的实现
  • 未办预售证,企业取得这笔收入要缴增值税吗?
  • 一般纳税人增值税申报操作流程
  • 专用发票超过360天作废
  • 酒店购买矿泉水再卖给客人怎么处理
  • 土地增值税含房产吗
  • 收到个税返还手续费怎么开发票
  • 预收培训费怎么确认增值税
  • 小微企业 记账
  • 如何整理流水账目
  • 安装监控违法吗
  • php数组可以使用哪些键名
  • 月末结转未分配利润吗
  • 发票明细与实际不符是什么行为
  • Vue vue.config.js 的详解与配置
  • php实现5分钟倒计时
  • 固定资产评估如何做
  • 比利牛斯山作为天然界限
  • 坏账准备税收调整
  • 关税组成计税价格公式推导
  • vue路由使用方法
  • 如何利用python进行文本挖掘
  • 企业的业务招待费是否可以随意开支
  • 普通发票密码区出格了能用吗
  • 金蝶软件凭证修改怎么做
  • phpcms使用教程
  • 出租设备收入交什么税
  • 销售商品尚未发出会计分录
  • 研发增值税税率怎么算
  • 个体定额和不定额有什么区别
  • 为什么结转材料成本差异
  • access分组计数
  • 如何理解合并报表编制程序中的调整与抵消处理
  • 企业法人股权转让要交什么税
  • 应收账款和应付账款属于什么科目
  • 哪些费用计入管理费用开办费
  • 公司员工机票可以抵扣多少呢
  • 营业外收入的主要核算内容
  • 补交增值税如何转管理费用
  • 电子发票必须要打印出来才能作为入账依据
  • linux软件安装源
  • win8.1安装应用商店
  • linux服务器怎么连接wifi
  • mac怎么访问windows
  • 苹果系统如何访问u盘
  • centos7 安全配置
  • ubuntu怎么设置网络连接
  • win7如何运行命令
  • mtask.exe - mtask是什么进程 有什么用
  • win10家庭版如何设置永不更新
  • cocos2dx lua android glsurfaceview 截图
  • 自定义ui界面
  • 举例说明什么是判断
  • perl 计算
  • perl脚本输出变量
  • unity中time.time
  • unity ti
  • jquery 动态绑定click事件
  • python lambda的用法
  • js给input添加属性
  • 安卓刷屏神器
  • 国家税务总局2018年61号公告
  • 北京第三税务所咨询电话
  • 东莞房地产协会副会长
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设