我想读取文本文件的内容并从中过滤掉坏词。{更新}所以我在你告诉我之后更新了我的 python 文件,但现在我得到一个没有模块的错误。当我运行 pip3 install profanity_filter 时,它给了我一个很大的错误。
我研究并发现了亵渎,但它不起作用
from profanity_filter import ProfanityFilter
pf = ProfanityFilter()
with open(input("Enter the name Of Your File"), "r") as myFile:
j = myFile.read()
filtered = pf.censor(j)
print(filtered)