zip并行迭代
name=(a,b,c,d)
age=(1,2,2)
for name, age in zip(name,age):
print("{0}-{1}".format(name ,age))
使用zip并行迭代