import spacy nlp = spacy.load("en_core_web_sm") doc = nlp("New Apple MacBook set launch tomorrow") for token in doc: token_text = token.text ...
確定! 回上一頁