字符串的清除方法

字符串的清除方法有: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!


你可能感兴趣的:(字符串的清除方法)