>>> from operator import mul>>> a=[1,2,3,4,5,6]>>> b=map(lambda x:reduce(mul, a)/x,a)>>> b[720, 360, 240, 180, 144, 120]>>>