python 两个for循环
时间: 2023-11-07 20:51:59 浏览: 110
如何提高python 中for循环的效率
5星 · 资源好评率100%
在Python中,可以使用两个for循环来迭代两个不同的列表或可迭代对象。这样可以对它们进行组合、比较或执行其他操作。以下是一个示例代码:
```python
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
for item1 in list1:
for item2 in list2:
print(item1, item2)
```
输出结果为:
```
1 a
1 b
1 c
2 a
2 b
2 c
3 a
3 b
3 c
```
这个示例中,我们对`list1`和`list2`进行了嵌套的for循环,首先迭代`list1`的每个元素,然后对于每个元素,再迭代`list2`的所有元素。在每次迭代中,我们打印了`item1`和`item2`的组合。
阅读全文