文章摘要:使用python怎么遍历列表并获取列表索引 python如何遍历列表
在python中对列表进行遍历并获取列表索引的方法 colours = ["red","green","blu […]
在python中对列表进行遍历并获取列表索引的方法
colours = ["red","green","blue"]
for i, colour in enumerate(colours):
print i, colour
文章摘要:使用python怎么遍历列表并获取列表索引 python如何遍历列表
在python中对列表进行遍历并获取列表索引的方法 colours = ["red","green","blu […]
在python中对列表进行遍历并获取列表索引的方法
colours = ["red","green","blue"]
for i, colour in enumerate(colours):
print i, colour