Answers for "how to remove all punctuation from a string in python"

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
1

python3 strip punctuation from string

import string
#make translator object
translator=str.maketrans('','',string.punctuation)
string_name=string_name.translate(translator)
Posted by: Guest on May-19-2020
3

clean punctuation from string python

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

python remove punctuation

import string 
sentence = "Hey guys !, How are 'you' ?"
no_punc_txt = ""
for char in sentence:
   if char not in string.punctuation:
       no_punc_txt = no_punc_txt + char
print(no_punc_txt);                 # Hey guys  How are you 
# or:
no_punc_txt = sentence.translate(sentence.maketrans('', '', string.punctuation))
print(no_punc_txt);                 # Hey guys  How are you
Posted by: Guest on May-21-2021

Code answers related to "how to remove all punctuation from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language