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))
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))
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'
python3 strip punctuation from string
import string
#make translator object
translator=str.maketrans('','',string.punctuation)
string_name=string_name.translate(translator)
clean punctuation from string python
s.translate(str.maketrans('', '', string.punctuation))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us