python删除输入句子中含有txt文件里的词汇
发布网友
发布时间:2022-04-18 04:15
我来回答
共2个回答
热心网友
时间:2022-04-18 05:44
# -*- coding: cp936 -*-
text = raw_input("Enter the moive review:")
words = text.split()
verbfile=open(r"~/verb.txt") #用你自己的文件名路径替换
adjfile=open(r"~/adj.txt") #用你自己的文件路径替换
word_dict=verbfile.read().split()+adjfile.read().split()
verbfile.close()
adjfile.close()
wordscopy=[]
wordscopy[:]=words
for word in words:
if word in word_dict:
wordscopy.remove(word)
print wordscopy
print "count:%d"%len(wordscopy)
热心网友
时间:2022-04-18 07:02
有没有搞错啊,这个是老师布置的作业吗.
刚刚回答完一个又来了一个相同的问题,提问之前搜索一下先吧,