[Zope] random alphanumeric generator

Trevor Toenjes zope@toenjes.com
Mon, 3 Dec 2001 11:57:46 -0500


Does this exist in python or has anyone worked on an random alphanumeric
generator?

Generate random 10 character string consisting of 0-9, a-z, or A-Z.

I guess I could make a tuple of the characters and concatenate 10 random
choices.
But I am worried about overhead to execute 100+/minute while running other
processes.

suggestions requested.
Thanks,
Trevor