Skip to content

Instantly share code, notes, and snippets.

@gnrfan
Created September 19, 2012 22:44
Show Gist options
  • Select an option

  • Save gnrfan/3752819 to your computer and use it in GitHub Desktop.

Select an option

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
>>> 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