rstrip()

Python3 字符串 Python3 字符串

描述

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

语法

rstrip()方法语法:

str.rstrip([chars])

w∝∞3∝∞x∝∞u∝∞e.com提供本在线速查手册,请勿盗用!

参数

返回值

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

实例

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

#!/usr/bin/python3

str = "     this is string example....wow!!!     "
print (str.rstrip())
str = "*****this is string example....wow!!!*****"
print (str.rstrip('*'))

w∝∞3∝∞x∝∞u∝∞e.com提供本在线速查手册,请勿盗用!

以上实例输出结果如下:

     this is string example....wow!!!
*****this is string example....wow!!!

w∝∞3∝∞x∝∞u∝∞e.com提供本在线速查手册,请勿盗用!

Python3 字符串 Python3 字符串