To pass multiple arguments to a map
function.
def q(x,y):
return x*y
print map (q,range(0,10),range(10,20))
Here q is function with multiple argument that map() calls. Make sure, the length of both the ranges i.e.
len (range(a,a')) and len (range(b,b')) are equal.