python 枚举列表中的项目

Posted

tags:

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

# https://stackoverflow.com/questions/691946/short-and-useful-python-snippets
# Allows you to have access to the indexes of the elements within a for loop
l = ['a', 'b', 'c', 'd', 'e', 'f']
for (index, value) in enumerate(l):
    print index, value

以上是关于python 枚举列表中的项目的主要内容,如果未能解决你的问题,请参考以下文章

python3,使用枚举保持索引的嵌套列表中的最小值

WPF 将枚举列表(或类似列表)绑定到复选框列表

python python枚举一个列表

Python在列表理解中使用枚举

Ruby中的Python枚举?

Python:枚举列表中所有元素的可能组合