Python 内置模块 enumerate

  1. enumerate(iterable, start=0)

enumerate(iterable, start=0)

https://docs.python.org/3/library/functions.html#enumerate

Return an enumerate object. iterable 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 iterable.

返回一个枚举对象。iterable 必须是一个序列,一个迭代器或一些支持迭代的对象。

enumerate() 返回的迭代器的 __next__() 方法返回一个包含数组下标(从start开始,默认为0)和迭代迭代得到的值。

>>>
>>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>> list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>> list(enumerate(seasons, start=1))
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]

相当于:

def enumerate(sequence, start=0):
    n = start
    for elem in sequence:
        yield n, elem
        n += 1

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 bin07280@qq.com

文章标题:Python 内置模块 enumerate

文章字数:213

本文作者:Bin

发布时间:2018-09-04, 16:06:22

最后更新:2019-08-06, 00:07:35

原始链接:http://coolview.github.io/2018/09/04/Python/Python%20%E5%86%85%E7%BD%AE%E6%A8%A1%E5%9D%97%20enumerate/

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。

目录