标签:写法 port 字母 bsp 空格 十六进制 大小写 十六 hello
import string
string.punctuation 会返回所有常用的标点符号
string.ascii_letters 会返回 a-zA-Z
string.ascii_lowercase 小写a-z
string.ascii_uppercase 大写A-Z
string.digits 字符串 0-9
string.hexdigits 十六进制 数可能涉及到的字母数字大小写
string.whitespace 会返回所有的 空白 包含 换行符 空格 制表符等
固定的写法搜集 :
1 s = ‘wrod , hello ! ’ s.translate(str.maketrans(‘‘, ‘‘, string.punctuation)) 可实现将字符串的标点符号删除
标签:写法 port 字母 bsp 空格 十六进制 大小写 十六 hello
原文地址:https://www.cnblogs.com/chenxiyuxiao/p/11345766.html