使用python怎么遍历列表并获取列表索引 python如何遍历列表

主机教程 建站分享 2年前 (2022-12-17) 181次浏览

文章摘要:使用python怎么遍历列表并获取列表索引 python如何遍历列表

在python中对列表进行遍历并获取列表索引的方法 colours = ["red","green","blu […]

在python中对列表进行遍历并获取列表索引的方法

colours = ["red","green","blue"]

for i, colour in enumerate(colours):

print i, colour


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:使用python怎么遍历列表并获取列表索引 python如何遍历列表
文章链接:http://www.7966.org/post/13655.html
转载请注明出处

喜欢 (0)