Remove characters at end of string in Python

"MASBicudo?!".rstrip("!?.")

Result is "MASBicudo".

This removes any of the characters from the given string. Order does not matter.