码迷,mamicode.com
首页 > 编程语言 > 详细

python使用string去掉字符串末尾的标点符号

时间:2018-12-17 16:58:59      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:strip   ring   ati   要求   符号   imp   处理过程   过程   去掉   

处理要求:去掉2.0.1.中最右侧的标点符号
导入string模块,处理过程如下:

In [101]: import string       
In [102]: a = ‘2.0.1.‘                                                                                                      
In [103]: a                                                                                                                 
Out[103]: ‘2.0.1.‘
In [104]: a = a.strip(string.punctuation)                                                                                   
In [105]: a                                                                                                                 
Out[105]: ‘2.0.1‘

python使用string去掉字符串末尾的标点符号

标签:strip   ring   ati   要求   符号   imp   处理过程   过程   去掉   

原文地址:http://blog.51cto.com/maoxiaoxiong/2331566

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