import spacy nlp = spacy.load('/spacy/zh_model') doc = nlp('西門子將努力參與中國的三峽工程建設。') for token in doc: print(token.text).
確定! 回上一頁