Python 3 - 字符串 rstrip() 方法
-
描述
rstrip()方法返回字符串的副本,其中所有字符都已从字符串的末尾删除(默认为空白字符)。 -
句法
以下是语法rstrip()方法 -str.rstrip([chars])
-
参数
chars− 您可以提供必须修剪的字符。 -
返回值
此方法返回字符串的副本,其中所有字符都已从字符串的末尾删除(默认为空白字符)。 -
例子
以下示例显示了 rstrip() 方法的用法。#!/usr/bin/python3 str = " this is string example....wow!!! " print (str.rstrip()) str = "*****this is string example....wow!!!*****" print (str.rstrip('*'))
-
结果
当我们运行上面的程序时,它会产生以下结果 -this is string example....wow!!! *****this is string example....wow!!!