Python3 string.rstrip()方法

2019-10-16 23:11:26
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!!!