Lou Pecora <[EMAIL PROTECTED]> writes: > There might even be an array method that can be adapted to get the > product. Is there a product method? (analogous to a sum method)
The "reduce" function which is being removed from python in 3.0. import operator def factorial(n): return reduce(operator.mul, xrange(1,n+1)) -- http://mail.python.org/mailman/listinfo/python-list