Answers for "python how to remove all puncation from string"

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
15

how to remove all characters from a string in python

s = 'abc12321cba'

print(s.replace('a', ''))
Posted by: Guest on August-10-2020

Code answers related to "python how to remove all puncation from string"

Python Answers by Framework

Browse Popular Code Answers by Language