Answers for "how to strip a string of punctuation python letter by letter"

5

remove punctuation from string python

#with re
import re
s = "string. With. Punctuation?"
s = re.sub(r'[^ws]','',s)
#without re
s = "string. With. Punctuation?"
s.translate(str.maketrans('', '', string.punctuation))
Posted by: Guest on May-26-2020
3

clean punctuation from string python

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

Code answers related to "how to strip a string of punctuation python letter by letter"

Python Answers by Framework

Browse Popular Code Answers by Language