Strings zu Hashes
Das nlp-Objekt wurde bereits für dich erstellt.
Diese Übung ist Teil des Kurses
Fortgeschrittenes NLP mit spaCy
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Look up the hash for the word "cat"
cat_hash = ____.____.____[____]
print(cat_hash)
# Look up the cat_hash to get the string
cat_string = ____.____.____[____]
print(cat_string)