Each Doc consists of individual tokens, and we can iterate over them. doc = nlp('We are learning SpaCy library today') for token in doc: print( ...
確定! 回上一頁