python:enumerate 函数

Posted Lemon_Rain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:enumerate 函数相关的知识,希望对你有一定的参考价值。

说明

enumerate()是python的内置函数:

  • 对于一个可迭代的(iterable)/可遍历的对象(如列表、字符串),enumerate将其组成一个索引序列,利用它可以同时获得索引和值
  • 多用于在for循环中得到计数
  • 返回的是一个enumerate对象

语法

enumerate(sequence, [start=0])

  • sequence -- 一个序列、迭代器或其他支持迭代对象。
  • start -- 下标起始位置。

实例

以上是关于python:enumerate 函数的主要内容,如果未能解决你的问题,请参考以下文章

enumerate函数用法

python enumerate用法总结

python enumerate用法总结

python enumerate用法总结

python enumerate

python enumerate