python3字符串操作总结
介绍Python常见的字符串处理方式 字符串截取 >>>s = 'hello' >>>s[0:3] 'he' >>>s[:] #截取全部字符 'hello' 消除空格及特殊符号 s.strip() #消除字符串s左右两边的空白字符(包括'\t','\n','\r','') s.strip('0') #消除字符串s左右两边的特殊字符(如'0'),字符串中间的'0'不会删除 例如: >>>s = '000hello00world000' >>>s.strip('0') 'hello00world' s.strip('12')等价于s.strip('21') 例如: >
用户评论