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

其实就是用zip把两个列表包装起来
for x, y in zip(list1, list2)

转载于:https://www.cnblogs.com/Jokerguigui/p/11531490.html

你可能感兴趣的:(python)