Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #36612
| Date | 2013-01-11 10:59 +0100 |
|---|---|
| From | Karim <kliateni@gmail.com> |
| Subject | Re: please i need explanation |
| References | <2FB5A66FD91D456BBDFCC0AE25760392@favour> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.391.1357898744.2939.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
On 11/01/2013 16:35, kwakukwatiah@gmail.com wrote: > def factorial(n): > if n<2: > return 1 > f = 1 > while n>= 2: > f *= n > f -= 1 > return f > > What explanation this a function representing the math factorial. You provide a parameter n: if n est lower than 2 the factorial is 1 (return by the function). in other case you multiply previous factoriel value by n (f *= n <=> f = f *n). And you decrement n by 1 (f -=1 <=> f = f - 1). This gives n*(n-)*(n-2).... general formula for factorial. Regards Karim
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: please i need explanation Karim <kliateni@gmail.com> - 2013-01-11 10:59 +0100
csiph-web