标签:strip ring ati 要求 符号 imp 处理过程 过程 去掉
处理要求:去掉2.0.1.中最右侧的标点符号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‘
标签:strip ring ati 要求 符号 imp 处理过程 过程 去掉
原文地址:http://blog.51cto.com/maoxiaoxiong/2331566