【python】enumerate方法详解

本文详细介绍了Python内置函数enumerate的作用,如何在循环中获取元素的索引和值,以及如何自定义索引起始值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

enumerate() 是 Python 内置的一个函数,用于在迭代过程中同时获得索引和对应的值。它可以很方便地在循环中获取元素的位置信息。enumerate() 函数的基本用法如下:

enumerate(iterable, start=0)

  • iterable:要迭代的可迭代对象,如列表、元组、字符串等。
  • start:指定索引的起始值,默认为 0。

下面是一个例子,演示如何使用 enumerate() 函数:

fruits = ['apple', 'banana', 'orange', 'grape'] 
for index, fruit in enumerate(fruits): 
    print(f"Index: {index}, Fruit: {fruit}") 

输出:

Index: 0, Fruit: apple Index: 1, Fruit: banana Index: 2, Fruit: orange Index: 3, Fruit: grape 

在这个例子中,enumerate() 函数将列表 fruits 中的元素与它们的索引一起返回,然后可以在循环中使用。

enumerate() 还可以接收第二个参数 start,指定索引的起始值。例如:

fruits = ['apple', 'banana', 'orange', 'grape'] 
for index, fruit in enumerate(fruits, start=1): 
    print(f"Index: {index}, Fruit: {fruit}") 

输出:

Index: 1, Fruit: apple Index: 2, Fruit: banana Index: 3, Fruit: orange Index: 4, Fruit: grape 

总之,enumerate() 函数是一个非常方便的工具,用于在迭代过程中获取元素的索引和值,适用于循环遍历各种可迭代对象。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

芯片后端工程师-ratel

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值