Strings to hashes
The nlp
object has already been created for you.
Diese Übung ist Teil des Kurses
Advanced NLP with spaCy
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# 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)