python3 zip()函数笔记

a=[1,2,3]
b=[4,5,6]

for A ,B in zip(a,b):#用zip()函数整体打包
print(A,B)
原文地址:https://www.cnblogs.com/lystbc/p/7489911.html