random number generator

Bryan Olson fakeaddress at nowhere.org
Fri Nov 4 15:47:11 EST 2005


Fredrik Lundh wrote:
>>How to generate a random number in Python. Is there any build in
>>function I can call?
> 
> 
>     >>> import random
>     >>> help(random)

If you need crypto-quality randomness:

 >>> import os
 >>> help(os.urandom)


-- 
--Bryan



More information about the Python-list mailing list