python enumerate 用法

参数为可遍历的变量,如 字符串,列表等; 返回值为enumerate类:

import string
s = string.ascii_lowercase
e = enumerate(s)
print s
print list(e)


输出为:
abcdefghij
[(0, 'a'), (1, 'b'), (2, 'c'), (3, 'd'), (4, 'e'), (5, 'f'), (6, 'g'), (7, 'h'), (8, 'i'), (9, 'j')]

在同时需要index和value值的时候可以使用 enumerate。

你可能感兴趣的:(c,python,list,import)