On Oct 22, 8:26 am, Py-Fun <[EMAIL PROTECTED]> wrote:
> I'm stuck trying to write a function that generates a factorial of a
> number using iteration and not recursion.  Any simple ideas would be
> appreciated.

def fac_btt(num):
        total = 1
        if num > 1:
                for i in range(1, num+1):
                        total *= i
        return total

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to