首页 > 代码库 > Python List数据的遍历
Python List数据的遍历
方式一:
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数据的遍历
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。