[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)%26) for c in "jvyy*jvyyzpthtna^pbz" ] )
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to