python replace whitespace and punctuation at end of string code example
Example: clean punctuation from string python
s.translate(str.maketrans('', '', string.punctuation))
s.translate(str.maketrans('', '', string.punctuation))