• python strip()函数 介绍


    函数原型

    声明:s为字符串,rm为要删除的字符序列

    s.strip(rm)        删除s字符串中开头、结尾处,位于 rm删除序列的字符

    s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符

    s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符

    注意:

    1. 当rm为空时,默认删除空白符(包括' ', ' ',  ' ',  ' ')

    例如:

    >>> a = '     123'
    >>> a.strip()
    '123'
    >>> a='		abc'
    'abc'
    >>> a = 'sdff
    '
    >>> a.strip()
    'sdff'
    

      

    2.这里的rm删除序列是只要边(开头或结尾)上的字符在删除序列内,就删除掉。

    例如 :

    >>> a = '123abc'
    >>> a.strip('21')
    '3abc'   结果是一样的
    >>> a.strip('12')
    '3abc'
    

      

  • 相关阅读:
    Twitter视频下载方式
    维基百科镜像处理
    Python sll
    youyube-dl
    python 进程池pool
    python常用正则表达式
    Struts2笔记3--OGNL
    Struts2笔记2
    Struts2笔记1
    Hibernate笔记7--JPA CRUD
  • 原文地址:https://www.cnblogs.com/wlzy/p/6510239.html
Copyright © 2020-2023  润新知