please i need explanation

K. Elo maillists at nic.fi
Fri Jan 11 04:56:19 EST 2013


Hi!

Since there is no stated question, I need to guess:

n -= 1 (instead of "f -= 1")

should work.

Or maybe the question was a totally different one...

-Kimmo

11.01.2013 17:35, kwakukwatiah at gmail.com wrote:
> def factorial(n):
>      if n<2:
>               return 1
>      f = 1
>      while n>= 2:
>          f *= n
>          f -= 1
>      return f
>
>
>




More information about the Python-list mailing list