时间:2021-07-01 10:21:17 帮助过:98人阅读
以下是strip()方法的语法:
str.strip([chars]);
参数
返回值
此方法返回所有字符从开始及字符串的末尾(默认空格字符)被去除后的字符串的一个副本。
例子
下面的例子显示了strip()方法的使用。
#!/usr/bin/python str = "0000000this is string example....wow!!!0000000"; print str.strip( '0' );
当我们运行上面的程序,它会产生以下结果:
this is string example....wow!!!