Answers for "python replace punctuation with space"

1

python pad punctuation with spaces

# Basic syntax using regex:
import re
re.sub('characters_to_pad', r' 1 ', string_of_characters)
# Where you can specify which punctuation characters you want to pad in
#	characters_to_pad

# Example usage:
import re
your_string = 'bla. bla? bla.bla! bla...' # An intelligent sentence
your_string = re.sub('([.,!()])', r' 1 ', your_string)
# your_string is updated in place
print(your_string)
--> bla .  bla? bla . bla !  bla .  .  . 
# Notice that the '?' didn't have spaces added because it wasn't listed
#	among the characters_to_pad in the above function
Posted by: Guest on December-15-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

Code answers related to "python replace punctuation with space"

Python Answers by Framework

Browse Popular Code Answers by Language