from spacy.lang.en import English nlp = English() doc = nlp("Iced that guy, cone a phrase.") for token in doc: print(token)
確定! 回上一頁