如果要使用string模块,需要先导入该模块
import string
string.ascii_lowercase #打印所有的小写字母
string.ascii_uppercase #打印所有的大写字母
string.ascii_letters #打印所有的大小写字母
string.digits #打印0-9的数字
string.punctuation #打印所有的特殊字符
string.hexdigits #打印十六进制的字符
string.printable #打印所有的大小写,数字,特殊字符
原文地址:https://www.cnblogs.com/qiuqiu64/p/10050617.html
时间: 2024-11-05 21:20:30