共计 245 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中可以使用 zip
函数来同时遍历多个列表,例如:
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
丸趣 TV 网 – 提供最优质的资源集合!
正文完