对于列表,同时需要索引和值时可以用 a = ['a', 'b', 'c'] for index, value in enumerate(a): print index, value 结果: 0,a 1, b 2, c