On Sat, Aug 7, 2010 at 15:01, Dominik Danter <do...@socialnerds.org> wrote:

> You could try something like binascii.hexlify(os.urandom(6)) to create hex.

>>> os.urandom(6)
b'f\xc8rnr\xea'
>>> binascii.hexlify(b'f\xc8rnr\xea')
b'66c8726e72ea'
>>> os.urandom(6)
b'D\xe9?\xda\xd80'
>>> binascii.hexlify(b'D\xe9?\xda\xd80')
b'44e93fdad830'

Thanks, but I'm not sure what to do with that..

What I am now sure of, is that I'm multiple steps ahead of myself with
os.urandom() !

Dick
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to