欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-29 13:55:48
...

处理要求:去掉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'

转载于:https://blog.51cto.com/maoxiaoxiong/2331566