"Paul McGuire" <[EMAIL PROTECTED]> writes: > from random import choice
Security note: if you're trying to generate real passwords this way, you're better off using os.urandom instead of the random module to generate the random numbers. The random module's results are supposed to be statistically uncorrelated (good for stuff like games and simulations) but they don't try to resist guessing by malicious attackers. os.urandom results are supposed to be unguessable. -- http://mail.python.org/mailman/listinfo/python-list