常量字符串
python内置string模块
Python中常用的常量字符串包括:
string.ascii_letters
:包含所有ASCII字母,即'a'
到'z'
和'A'
到'Z'
。string.ascii_lowercase
:包含所有小写ASCII字母,即'a'
到'z'
。string.ascii_uppercase
:包含所有大写ASCII字母,即'A'
到'Z'
。string.digits
:包含所有数字字符,即'0'
到'9'
。string.hexdigits
:包含所有十六进制数字字符,即'0'
到'9'
和'a'
到'f'
。string.octdigits
:包含所有八进制数字字符,即'0'
到'7'
。string.punctuation
:包含所有特殊字符,如'!'
、'@'
、'#'
等。