Is there any way to append items to a maketrans() table? (Python 3.7)
I have this line that creates a translation table for regular Ascii Punctuation symbols. Now I'd like to add some more Unicode symbols...
table = str.maketrans('', '', string.punctuation)
Thanks!