Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # string_info.py
- import string
- help(string)
- ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
- ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
- ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
- digits = '0123456789'
- printable = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\]^_`{|}~'
- punctuation = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
- whitespace = '\t\n\x0b\x0c\r '
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement