标签: python textblob
我正在处理一个textblob,其中一个步骤是删除停用词。 Textblobs是不可变的,所以我将其变为一个列表来完成这项工作:
blob = tb(tekst) lista = [word for word in blob.words if word not in stopwords.words('english')] tekst = ' '.join(lista) blob = tb(tekst)
这个问题有更简单/更优雅的解决方案吗?