I hope to input a text file into Execute Python and do word segmentation. The python scripts is as following. The result shows parsing failed, can anyone give me some suggestion? Thanks!
import pandas
import jieba
import csv
def rm_main():
ff = open("C:/Users/user/Desktop/speech.txt").read()
seglist = jieba.cut(ff, cut_all=False)
f = open("text.csv","w")
w = csv.writer(f)
w.writerows(seglist)
f.close()