Skip to content

Instantly share code, notes, and snippets.

@axegon
Created December 18, 2019 15:58
Show Gist options
  • Save axegon/99759044be59cc420d76d1f32f9f28ce to your computer and use it in GitHub Desktop.
Save axegon/99759044be59cc420d76d1f32f9f28ce to your computer and use it in GitHub Desktop.
>>> import string
>>> string.letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
>>> help(string)
>>> string.letters
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
>>> reload(string)
<module 'string' from '/usr/lib64/python2.7/string.pyc'>
>>> string.letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
>>> help(string)
>>> string.letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment