标签:ring code nbsp strip() aabb pytho python 方法学 strip
Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。
当使用strip(‘xxx‘),只要字符串头尾有"xxx"中的一个,就会去掉,而不是符合字符串‘‘xxx‘‘才去掉
1 >>> string = ‘aaabbbccc‘ 2 >>> string.strip(‘abc‘) 3 ‘‘ 4 >>> string2 = ‘aaaffbbcc‘ 5 >>> string2.strip(‘abc‘) 6 ‘ff‘ 7 >>> string3 = ‘aaaffbbffcc‘ 8 >>> string3.strip(‘abc‘) 9 ‘ffbbff‘
标签:ring code nbsp strip() aabb pytho python 方法学 strip
原文地址:http://www.cnblogs.com/time-read/p/7606818.html