Created
September 19, 2012 22:44
-
-
Save gnrfan/3752819 to your computer and use it in GitHub Desktop.
Por si necesitan tener letras y digitos a la mano para generar passwords aleatoriamente o cualquier otra cosa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> import string | |
| >>> string.digits | |
| '0123456789' | |
| >>> string.hexdigits | |
| '0123456789abcdefABCDEF' | |
| >>> string.ascii_uppercase | |
| 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
| >>> string.ascii_lowercase | |
| 'abcdefghijklmnopqrstuvwxyz' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment