Answers for "Removing punctuation with NLTK in Python"

1

Removing punctuation with NLTK in Python

import string 
from nltk.tokenize import word_tokenize
s =  set(string.punctuation)          # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
sentence = "Hey guys !, How are 'you' ?"
sentence = word_tokenize(sentence)
filtered_word = []
for i in sentence:
    if i not in s:
        filtered_word.append(i);
for word in filtered_word:
  print(word,end = " ")
Posted by: Guest on October-16-2021

Code answers related to "Removing punctuation with NLTK in Python"

Python Answers by Framework

Browse Popular Code Answers by Language