remove punctuation from string python\ code example
Example 1: can you edit string.punctuation
>>> from string import punctuation
>>> from re import sub
>>>
>>> string = "\Fred-Daniels!"
>>> translator = str.maketrans('','', sub('\-', '', punctuation))
>>> string
'\\Fred-Daniels!'
>>> string = string.translate(translator)
>>> string
'Fred-Daniels'
Example 2: clean punctuation from string python
s.translate(str.maketrans('', '', string.punctuation))