溫馨提示×

Python中怎么遍歷多個列表

小億
105
2024-05-10 15:07:15
欄目: 編程語言

在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

```

0