Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #36610
| From | kwakukwatiah@gmail.com |
|---|---|
| Subject | please i need explanation |
| Date | 2013-01-11 09:35 -0600 |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.389.1357897249.2939.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
def factorial(n):
if n<2:
return 1
f = 1
while n>= 2:
f *= n
f -= 1
return f
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
please i need explanation kwakukwatiah@gmail.com - 2013-01-11 09:35 -0600
Re: please i need explanation Hans Mulder <hansmu@xs4all.nl> - 2013-01-12 00:56 +0100
Re: please i need explanation Tony the Tiger <tony@tiger.invalid> - 2013-01-13 15:04 -0600
Re: please i need explanation Walter Hurry <walterhurry@lavabit.com> - 2013-01-13 21:08 +0000
csiph-web