enumerate获取数组索引和值 2019-12-26 本文已影响0人 zzl灬 list = ['a','b','c','d'] for index,item in enumerate(list): print index,item 结果 结果.png