Best way to strip punctuation from a string It seems like there should be a simpler way than: import string s = "string. With. Punctuation?" # Sample string out = s.translate(string.maketrans("",""), string.punctuation) Is there? 32 s 32 April 22, 2022 0 Comments