您好,欢迎来到尚佳旅游分享网。
搜索
您的当前位置:首页python通过索引遍历列表的方法

python通过索引遍历列表的方法

来源:尚佳旅游分享网

本文实例讲述了python通过索引遍历列表的方法。分享给大家供大家参考。具体如下:

python中我们可以通过for循环来遍历列表:

colours = ["red","green","blue"]
for colour in colours:
 print colour

如果希望遍历列表的同时得到元素的索引号,可以使用下面的代码:

colours = ["red","green","blue"]
for i, colour in enumerate(colours):
 print i, colour

希望本文所述对大家的Python程序设计有所帮助。

Copyright © 2019- shangjiatang.cn 版权所有 湘ICP备2022005869号-4

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务