Strings naar hashes
Het object nlp is al voor je aangemaakt.
Deze oefening maakt deel uit van de cursus
Geavanceerde NLP met spaCy
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# 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)