python for循环中遍历两个不同长度的列表
时间: 2023-06-10 12:04:19 浏览: 234
Python-遍历列表-for循环
5星 · 资源好评率100%
可以使用zip()函数将两个列表打包成元组,再用for循环进行遍历。如果两个列表长度不同,则循环会以最短的列表长度为基准。代码示例如下:
```
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c', 'd']
for x, y in zip(list1, list2):
print(x, y)
```
输出结果为:
```
1 a
2 b
3 c
```
阅读全文