访问“for"循环中的索引? [英] Accessing the index in 'for' loops?

查看:39
本文介绍了访问“for"循环中的索引?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 for 循环中访问索引,如下所示?

How do I access the index in a for loop like the following?

ints = [8, 23, 45, 12, 78]
for i in ints:
    print('item #{} = {}'.format(???, i))

我想得到这个输出:

item #1 = 8
item #2 = 23
item #3 = 45
item #4 = 12
item #5 = 78

当我使用 for 循环遍历它时,如何访问循环索引,在这种情况下是从 1 到 5?

When I loop through it using a for loop, how do I access the loop index, from 1 to 5 in this case?

推荐答案

使用额外的状态变量,例如索引变量(您通常会在 C 或 PHP 等语言中使用),被认为是非 Python 的.

Using an additional state variable, such as an index variable (which you would normally use in languages such as C or PHP), is considered non-pythonic.

更好的选择是使用内置函数 enumerate(),在 Python 2 和 3 中都可用:

The better option is to use the built-in function enumerate(), available in both Python 2 and 3:

for idx, val in enumerate(ints):
    print(idx, val)

查看 PEP 279 了解更多信息.

Check out PEP 279 for more.

这篇关于访问“for"循环中的索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆