import spacy from spacy.symbols import ORTH nlp = spacy.load("en_core_web_sm") doc = nlp("I am flying to Frisco") print([w.text for w in doc]) # Add special ...
確定! 回上一頁