python strip()函数


def strip(self, chars=None):
    """
    S.strip([chars]) -> str
    Return a copy of the string S with leading and trailing whitespace removed.    
    返回字符串的副本删除前导和尾随空白。
    If chars is given and not None, remove characters in chars instead.
  如果字符而不是没有,删除字符字符代替。
    """
    return ""
 
  
 
  
 
  
声明:s为字符串,rm为要删除的字符序列
s.strip(rm)     删除s字符串中开头、结尾处,位于 rm删除序列的字符
s.lstrip(rm)    删除s字符串中开头处,位于 rm删除序列的字符
s.rstrip(rm)    删除s字符串中结尾处,位于 rm删除序列的字符
注意: 
    1. 当rm为空时,默认删除空白符(包括'\n', '\r',  '\t',  ' ')
    2.这里的rm删除序列是只要边(开头或结尾)上的字符在删除序列内,就删除掉。

print(' \t  123\r\n '.strip())  # 123
print('http://www.baidu.com'.strip('ht'))   # p://www.baidu.com
print('http://www.baidu.com'.strip('htmo')) # p://www.baidu.c



你可能感兴趣的:(python)