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

Python List数据的遍历

时间:2014-10-17 17:04:16      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:使用   for   数据   on   as   python   app   class   print   

方式一:

app_list = [1234, 5677, 8899]
<!-- lang: python -->
for app_id in app_list:
<!-- lang: python -->
    print app_id

输出:
1234
5677
8899

方式二:

app_list = [1234, 5677, 8899]
<!-- lang: python -->
for index,app_id in enumerate(app_list):
<!-- lang: python -->
    print index, app_id

输出:
0 1234
1 5677
2 8899

方式三: 使用range()或xrange()

app_list = [1234, 5677, 8899]
<!-- lang: python -->
    for i in range(len(app_list)):
<!-- lang: python -->
          print i,app_list[i]

输出:
0 1234
1 5677
2 8899

方式四: 使用iter()

app_list = [1234, 5677, 8899]
<!-- lang: python -->
for app_id in iter(app_list):
<!-- lang: python -->
    print app_id

输出:
1234
5677
8899

Python List数据的遍历

标签:使用   for   数据   on   as   python   app   class   print   

原文地址:http://my.oschina.net/syc2013/blog/333265

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