We Recommend

Learning Python Learning Python
The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning by semi-guided experimentation.


Posted By

ches on 09/12/07


Tagged

password python String


Versions (?)


Quick, Simple Password Generator


Published in: Python 


Obviously there's no real crytpo here -- use this for cases like regenerating and emailing a user password.

  1. import string
  2. from random import choice
  3.  
  4. size = 9
  5. ''.join([choice(string.letters + string.digits) for i in range(size)])

Report this snippet 

You need to login to post a comment.