import spacy # Load the small English model nlp = spacy.load('en_core_web_sm') # Process a text doc = nlp("She ate the pizza") # Iterate over the tokens for ...
確定! 回上一頁