Python 3 – 字符串 rstrip() 方法

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!!!

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程