3
3.7Python字符串strip方法
Posted by 撒得一地 on 2016年2月6日 in python教程
上一篇: 3.6Python字符串split方法
下一篇: 3.8Python下translate方法
下一篇: 3.8Python下translate方法
strip方法返回去除字符串两侧(不包括内部)空格的字符串,和PHP中的trim函数一样,实例:
>>> " hehe,my mood is good! ".strip() 'hehe,my mood is good!' >>> " front input is useless !! ".strip() 'front input is useless !!'
strip这个函数经常和lower方法一起使用来对比用户的输入和存储的值。
也可以使用strip方法指定需要去除的字符串,将它们列为参数即可。比如:
>>> '***** spam comment for blog!***!'.strip('*!') ' spam comment for blog'
要注意的是这个方法只会去除两侧的字符,字符串中匹配的字符是不会被去掉的。
上一篇: 3.6Python字符串split方法
下一篇: 3.8Python下translate方法
下一篇: 3.8Python下translate方法
3 Comments
恭喜站长,你的申请已经通过陌小雨博客导航的审核!
好的,感谢!
还有 你的分类目录页进去怎么那么慢