标签:enum blog 序列 html htm 函数 nbsp .com int
enumerate 函数用于遍历序列中的元素以及它们的下标:
>>> for i,j in enumerate((‘a‘,‘b‘,‘c‘)):
print i,j
0 a
1 b
2 c
>>> for i,j in enumerate([1,2,3]):
print i,j
0 1
1 2
2 3
>>> for i,j in enumerate({‘a‘:1,‘b‘:2}):
print i,j
0 a
1 b
>>> for i,j in enumerate(‘abc‘):
print i,j
0 a
1 b
2 c
源链接:
http://blog.sina.com.cn/s/blog_a299c85e0101h3y4.html
标签:enum blog 序列 html htm 函数 nbsp .com int
原文地址:http://www.cnblogs.com/AaronFan/p/6090380.html