Return to Snippet

Revision: 33285
at October 7, 2010 18:56 by johnny2shoes


Initial Code
import string
from random import choice
def GetRandomPassword():
   return ''.join([choice(string.letters + string.digits) for i in range(9)])

Initial URL


Initial Description


Initial Title
Random Password Generator

Initial Tags


Initial Language
Python