python中如何在一个for循环中遍历两个列表

`其实就是用zip把两个列表包装起来:

 for x, y in zip(list1, list2) 
原文地址:https://www.cnblogs.com/Jokerguigui/p/11531490.html