Wie man einen Token Spacy Python initialisieren

doc = nlp("Give it back! He pleaded.")
token = doc[0]
assert token.text == "Give"
Grumpy Grivet