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
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to