Python中enumerate函数代码解析

作者:mengwei 时间:2023-05-01 09:13:52 

enumerate函数用于遍历序列中的元素以及它们的下标。

enumerate函数说明:

函数原型:enumerate(sequence, [start=0])

功能:将可循环序列sequence以start开始分别列出序列数据和数据下标

即对一个可遍历的数据对象(如列表、元组或字符串),enumerate会将该数据对象组合为一个索引序列,同时列出数据和数据下标。

举例说明:

存在一个sequence,对其使用enumerate将会得到如下结果:

start        sequence[0]
start+1 sequence[1]
start+2    sequence[2]......

适用版本:

Python2.3+
Python2.x

注意:在python2.6以后新增了start参数

英文解释:

Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over sequence。

代码实例:

enumerate参数为可遍历的变量,如 字符串,列表等; 返回值为enumerate类。


import string
s = string.ascii_lowercase
e = enumerate(s)
print s
print list(e)

输出为:


abcdefghij
[(0, 'a'), (1, 'b'), (2, 'c'), (3, 'd'), (4, 'e'), (5, 'f'), (6, 'g'), (7, 'h'), (8, 'i'), (9, 'j')]

在同时需要index和value值的时候可以使用 enumerate。

该实例中,line 是个 string 包含 0 和 1,要把1都找出来:


def xread_line(line):
return((idx,int(val)) for idx, val in enumerate(line) if val != '0')
print read_line('0001110101')
print list(xread_line('0001110101'))

来源:http://www.pythontab.com/html/2017/hanshu_0517/1141.html

标签:python,enumerate函数
0
投稿

猜你喜欢

  • python使用Tkinter显示网络图片的方法

    2021-09-26 18:25:38
  • python数据类型之间怎么转换技巧分享

    2023-09-04 02:38:42
  • Laravel实现批量更新多条数据

    2023-10-23 03:23:03
  • Pyspark读取parquet数据过程解析

    2022-01-21 13:33:38
  • 深入学习Python+Opencv常用四种图像处理操作

    2023-02-22 12:28:27
  • SqlDateTime溢出该怎么解决

    2024-01-13 23:06:12
  • CSS代码实现下划线样式的输入框效果

    2010-03-16 12:42:00
  • Python测试框架pytest介绍

    2023-08-03 01:47:59
  • Python轻松破解加密压缩包教程详解

    2021-04-12 13:26:45
  • Spark中的数据读取保存和累加器实例详解

    2022-09-13 19:26:46
  • 详解Python中的相对导入和绝对导入

    2023-02-05 01:10:36
  • 制作Dreamweaver活动菜单条

    2008-10-03 20:59:00
  • Python实现问题回答小游戏

    2023-05-13 13:26:19
  • Go 一般方法与接口方法接收者的差异详解

    2024-04-27 15:38:52
  • Django读取Mysql数据并显示在前端的实例

    2023-11-09 17:36:49
  • 详解Django关于StreamingHttpResponse与FileResponse文件下载的最优方法

    2021-04-13 08:17:01
  • Vue路由的模块自动化与统一加载实现

    2024-04-27 16:17:15
  • javascript的正则表达式

    2010-07-27 12:29:00
  • pydantic resolve解决嵌套数据结构生成痛点分析

    2022-06-05 02:16:36
  • python图像处理-利用一行代码实现灰度图抠图

    2021-03-16 10:40:49
  • asp之家 网络编程 m.aspxhome.com