如何从字符串中删除所有尾随破折号?

ens*_*are 1 python

例:

string1 = 'title--'
string2 = 'title-'
string3 = 'this-is-a-title----'

>> print doSomething(string1)
>> title

>> print doSomething(string2)
>> title

>> print doSomething(string3)
>> this-is-a-title
Run Code Online (Sandbox Code Playgroud)

Sve*_*ach 9

string1.rstrip("-")
# "title"
string2.rstrip("-")
# "title"
string3.rstrip("-")
# "title-is-a-title"
Run Code Online (Sandbox Code Playgroud)