Python 同时for遍历多个列表时间:2024-04-30 15:34:50 a = range(3) b = range(3) [ (x, y) for x, y in zip(a, b) ] 结果: [ (0,0), (1,1), (2,2) ] 当然,如上可以推广到多个列表。