📅  最后修改于: 2022-03-11 14:46:43.885000             🧑  作者: Mango
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 = " ")