美文网首页
python strip()函数 去空格\n\r\t函数的用法

python strip()函数 去空格\n\r\t函数的用法

作者: iOS_愛OS | 来源:发表于2018-06-12 17:12 被阅读1280次

    在Python中字符串处理函数里有三个去空格(包括'\n', '\r', '\t', ' ')的函数:

    1. strip 同时去掉左右两边的空格
    2. lstrip 去掉左边的空格
    3. rstrip 去掉右边的空格

    具体示例如下:

    >>>a=" gho stwwl "
    >>>a.lstrip() 'gho stwwl '
    >>>a.rstrip() ' gho stwwl'
    >>>a.strip() 'gho stwwl'
    

    声明:s为字符串,rm为要删除的字符序列
    s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的字符
    s.lstrip(rm) 删除s字符串中开头处,位于 rm删除序列的字符
    s.rstrip(rm) 删除s字符串中结尾处,位于 rm删除序列的字符


    注意:

    1. 当rm为空时,默认删除空白符(包括'\n', '\r', '\t', ' ')
    >>> a = ' 123'
    >>> a.strip()
    '123'
    >>> a='\t\tabc'
    'abc'
    >>> a = 'sdff\r\n'
    >>> a.strip()
    'sdff'
    
    1. 这里的rm删除序列是只要边(开头或结尾)上的字符在删除序列内,就删除掉。
    >>> a = '123abc'
    >>> a.strip('21')
    '3abc' 结果是一样的
    >>> a.strip('12')
    '3abc'
    

    相关文章

      网友评论

          本文标题:python strip()函数 去空格\n\r\t函数的用法

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