标签:大小写 color 特殊 let print letter style nbsp sci
import string print(string.ascii_letters)#大小写所有字母abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ print(string.ascii_lowercase) #所有小写字母 abcdefghijklmnopqrstuvwxyz print(string.ascii_uppercase)#所有大写字母 ABCDEFGHIJKLMNOPQRSTUVWXYZ print(string.digits)#0123456789所有数字 print(string.punctuation)#所有特殊字符!"#$%&‘()*+,-./:;<=>?@[\]^_`{|}~
标签:大小写 color 特殊 let print letter style nbsp sci
原文地址:https://www.cnblogs.com/miyatest/p/10124179.html