美文网首页
字符串的清除方法

字符串的清除方法

作者: 光游骑兵 | 来源:发表于2018-10-09 08:58 被阅读0次

字符串的清除方法有:strip(),lstrip(),rstrip(),

    1.strip():清除字符串两边

    2. lstrip():清除字符串的左边

    3 .rstrip():清除字符串的右边

        a='!hello world!!'

        b=a.strip('!')            return:hello word!

         a='!hello world!!'

        b=a.lstrip('!')            return:hello word!!

         a='!hello world!!'

        b=a.rstrip('!')            return:!hello word!


相关文章

网友评论

      本文标题:字符串的清除方法

      本文链接:https://www.haomeiwen.com/subject/dwnjaftx.html