如果func为None, list的值是Seq1, Seq2,...,Seqx 配对在一起的tuplle.
def func(arg1,arg2,...,argx):
...
return result
a=[1,2,3,4,5]
b=[6,7,8,9,10]
def test_plus(i,j):
return i+j
c=map(test_plus,a,b)
print c
output:
[7, 9, 11, 13, 15]
zip() 相当于第一个参数为None的map. 返回结果就是配对的seq形成的list