Python字串rstrip()方法

2019-10-16 23:06:44

Python字串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!!!