python-stripPython strip()方法
Posted TaiChiLYL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-stripPython strip()方法相关的知识,希望对你有一定的参考价值。
strip()方法用于移除字符串首尾的指定字符(默认是空格)
比如:
str = "0000000this is string example....wow!!!0000000";
print str.strip( ‘0‘ );
结果:this is string example....wow!!!
str = "0000000this is string 0000example....wow!!!0000000";
print str.strip( ‘0‘ );
结果:this is string 0000example....wow!!!
只移除首尾,不移除中间的值
以上是关于python-stripPython strip()方法的主要内容,如果未能解决你的问题,请参考以下文章