Answers for "remove punctuation from string python\"

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'
Posted by: Guest on November-27-2020
3

clean punctuation from string python

s.translate(str.maketrans('', '', string.punctuation))
Posted by: Guest on May-11-2020

Code answers related to "remove punctuation from string python\"

Python Answers by Framework

Browse Popular Code Answers by Language