encoding:utf-8 -*- import spacy nlp = spacy.load("zh_core_web_sm") doc = nlp("王小明在北京的清華大學讀書") for token in doc: ...
確定! 回上一頁