Remove punctuation from text using Python

Anjana K V
1 min readAug 12, 2020

Text cleaning as part of preprocessing for Text Analytics

Common punctuation marks seen in text. (Source: BookBaby Blog)

Removal of punctuation is a necessary step in cleaning the text data before performing text analytics. Python offers numerous ways to deal with punctuation. Below given is a simple implementation using ‘re’ and ‘string’ modules.

import re
import string

The punctuation attribute of ‘string’ module is used as the reference list to look for all possible punctuation in the text data. Then, substitute function from ‘re’ is used to replace all punctuation from the target string or text data.

s = "A@p,p!!le#"
punctuation = '['+string.punctuation+']'
re.sub(punctuation,'',s)

The output of the last line above is:

'Apple'

Thank you! Stay tuned for more interesting things you can do with Python!

--

--

Anjana K V

Data Science Professional | ~9 years of experience in data science & analytics across various domains — retail, insurance, finance and digital marketing