• Python rstrip()方法


    描述

    Python rstrip() 删除 string 字符串末尾的指定字符(默认为空格).

    语法

    rstrip()方法语法:

    str.rstrip([chars])

    参数

    • chars -- 指定删除的字符(默认为空格)

    返回值

    返回删除 string 字符串末尾的指定字符后生成的新字符串。

    实例

    以下实例展示了rstrip()函数的使用方法:

    str = " this is string example....wow!!! "
    print(str.rstrip())
    str = "88888888this is string example....wow!!!8888888";
    print(str.rstrip('8'))
    str = "88888888this is string example....wow!!!8888888jiu8hhh888";
    print(str.rstrip('8'))

    以上实例输出结果如下:

         this is string example....wow!!!
    88888888this is string example....wow!!!
    88888888this is string example....wow!!!8888888jiu8hhh

    原文:https://www.runoob.com/python/att-string-rstrip.html

  • 相关阅读:
    三目运算符和逗号表达式
    ++与--操作符
    位运算符
    逻辑运算符
    接续符
    单引号和双引号
    注释分析
    enum,sizeof,typedef
    TERADATA数据库操作
    利用Spring的AbstractRoutingDataSource解决多数据源的问题
  • 原文地址:https://www.cnblogs.com/soymilk2019/p/15066440.html
Copyright © 2020-2023  润新知