字符串的清除方法

2018-10-09  本文已影响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!


上一篇下一篇

猜你喜欢

热点阅读