Python3使用jieba分词

import jieba

try:
    f1 = open('wiki.zh.text.jian','r')
    f2 = open('2.txt','w')
    mystr = f1.readlines()
    iters = 1
    for word in mystr:
        seg_list = jieba.cut(word)
        result = ' '.join(seg_list)
        f2.write(result)
        print('处理完成%d行'%(iters))
        iters+=1
    #print(mystr[0])

finally:
    if f1:
        f1.close()
    if f2:
        f2.close()

猜你喜欢

转载自blog.csdn.net/xyx_HFUT/article/details/81255388