码迷,mamicode.com
首页 > 编程语言 > 详细

【python】浅谈enumerate 函数

时间:2014-07-28 14:58:23      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:for   python   第一个   函数   print   遍历   元素   on   

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

 

>>> for i,j in enumerate(‘abc‘,2): ###“2”为第一个元素的坐标
    print i,j

    
2 a
3 b
4 c

【python】浅谈enumerate 函数,布布扣,bubuko.com

【python】浅谈enumerate 函数

标签:for   python   第一个   函数   print   遍历   元素   on   

原文地址:http://www.cnblogs.com/paulwinflo/p/3872725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!