Re: random number between 0 and 20

2005-04-20 Thread TZOTZIOY
On Wed, 20 Apr 2005 11:10:21 -0400, rumours say that Peter Hansen <[EMAIL PROTECTED]> might have written: >NNTP-Posting-Date: Wed, 20 Apr 2005 10:20:45 -0500 >Date: Wed, 20 Apr 2005 11:10:21 -0400 Based on these headers from your message, plus the fact that you answered five minutes before aleksa

Re: random number between 0 and 20

2005-04-20 Thread aleksander . helgaker
Yes I know about assigning and all that. I just stated the name of the variable so that people could easily explain how to create the random number. I needed it to practice Python. I just finished making a number guess program. I just finished it. It was much easier to do then I thought it would be

Re: random number between 0 and 20

2005-04-20 Thread Peter Hansen
[EMAIL PROTECTED] wrote: How can I generate a random number between 0 - 20 and store the number in nrrandom? You would use the "random" module from the standard library. It has a randint() method that should do the job. Read the docs for more. Assigning to nrrandom? Is that just a variable name?

Re: random number between 0 and 20

2005-04-20 Thread Will McGugan
[EMAIL PROTECTED] wrote: How can I generate a random number between 0 - 20 and store the number in nrrandom? Assuming its inclusive.. >>> from random import randint >>> nrrandom = randint(0,20) Will McGugan -- http://www.willmcgugan.com "".join( [ {'*':'@','^':'.'}.get(c,None) or chr(97+(ord(c)-84)

Re: random number between 0 and 20

2005-04-20 Thread TZOTZIOY
On 20 Apr 2005 08:15:02 -0700, rumours say that [EMAIL PROTECTED] might have written: >How can I generate a random number between 0 - 20 and store the number >in nrrandom? Just choose a random number yourself, eg. nrrandom=17 (just kidding :) import random nrrandom = random.randint(0,20) See

random number between 0 and 20

2005-04-20 Thread aleksander . helgaker
How can I generate a random number between 0 - 20 and store the number in nrrandom? -- http://mail.python.org/mailman/listinfo/python-list