举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > python3 enumerate函数 Python3 enumerate() 函数

python3 enumerate函数 Python3 enumerate() 函数

2023-05-11 11:18 Python3教程

python3 enumerate函数 Python3 enumerate() 函数

python3 enumerate函数

Python3 enumerate函数是一个内置函数,它可以将一个可迭代对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,返回 enumerate 对象。

# 使用enumerate函数
list1 = ['a', 'b', 'c']
for index, value in enumerate(list1):
    print(index, value)
# 输出结果:0 a 1 b 2 c 

enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。它有三个参数:iterable、start 和 step。其中 iterable 是必需的参数;start 默认值是 0 ;step 默认值是 1。

Python3 enumerate() 函数

Python3 enumerate() 函数

Python3 内置函数 Python3 内置函数

描述

Python3 enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。

语法

以下是 enumerate() 方法的语法:

enumerate(sequence, [start=0])

参数

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

返回值

返回 enumerate(枚举) 对象。

实例

以下展示了使用 enumerate() 方法的实例:

>>>seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>>list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>>list(enumerate(seasons, start=1)) # 小标从 1 开始
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]

普通的for循环:

>>>i = 0
>>>seq = ['one', 'two', 'three']
>>>for element in seq:
... print(i, seq[i])
... i += 1
...
0 one
1 two
2 three

for循环使用enumerate:

>>>seq = ['one', 'two', 'three']
>>>for i, element in enumerate(seq):
... print(i, seq[i])
...
0 one
1 two
2 three
>>>

Python3 内置函数 Python3 内置函数

阅读全文
以上是编程学为你收集整理的python3 enumerate函数 Python3 enumerate() 函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部