import spacy nlp = spacy.load('en_core_web_sm') doc = nlp(u'Apple is looking at buying U.K. startup for $1 billion') for token in doc: ...
確定! 回上一頁