python读取文件下的所有文档
两类文档存储在两个路径下,假设每类文档有25个文档
def spamTest():
docList = []
classList = []
fullText = []
for i in range(1,26):#循环读取所有的txt,并解析成列表
wordlist = textParse(open('路径.txt' % i).read())
docList.append(wordlist)
fullText.extend(wordlist)
classList.append(1)#文档类别
wordlist = textParse(open(路径.txt' % i).read())
docList.append(wordlist)#将添加的列表作为一个元素添加到原列表中
fullText.extend(wordlist)#将添加的列表的中的元素对应添加到元列表中
classList.append(0)#文档类别
版权声明:
本文为博主原创文章,转载必须标明出处:http://www.cnblogs.com/smallcrystal/
作者:水晶球