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()

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM