在Python中可以使用`zip`函數來同時遍歷多個列表,例如:
```python
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
list3 = ['x', 'y', 'z']
for item1, item2, item3 in zip(list1, list2, list3):
print(item1, item2, item3)
```
上面的代碼會輸出:
1 a x
2 b y
3 c z
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業(yè)務經營許可證編號:B1-20181529