python strip() 方法

Posted jiayou888888

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python strip() 方法相关的知识,希望对你有一定的参考价值。

strip() 用于移除 字符串 首尾指定的字符, 默认是移除空格

 

用法 :

 s.strip(‘参数‘)

实例 1 str = "0000000this is string example....wow!!!0000000";

   2 print str.strip(‘0’) 

执行之后的结果

技术分享
this is string example....wow!!!
View Code

 

以上是关于python strip() 方法的主要内容,如果未能解决你的问题,请参考以下文章

line.strip()方法澄清

python strip() 方法

Python strip()方法

Python strip()方法

Python strip()方法

python中的strip()方法