📜  在 Python 代码示例中使用 NLTK 删除标点符号

📅  最后修改于: 2022-03-11 14:46:43.885000             🧑  作者: Mango

代码示例1
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 = " ")