Python字符串操作---rstrip()方法

来源:互联网 发布:网络博客拉人方法 编辑:程序博客网 时间:2024/06/05 18:24

描述

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

语法

rstrip()方法语法:

str.rstrip([chars])

参数

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

返回值

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

示例

#!/usr/bin/pythonstr = "     this is string example....wow!!!     ";print str.rstrip();str = "88888888this is string example....wow!!!8888888";print str.rstrip('8');

以上示例输出结果如下:

     this is string example....wow!!!88888888this is string example....wow!!!
原创粉丝点击