码迷,mamicode.com
首页 > 其他好文 > 详细

string 类

时间:2019-08-13 15:05:58      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:写法   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))    可实现将字符串的标点符号删除 

string 类

标签:写法   port   字母   bsp   空格   十六进制   大小写   十六   hello   

原文地址:https://www.cnblogs.com/chenxiyuxiao/p/11345766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!