Files
old-nlp/venv/lib/python3.7/site-packages/nltk/test/collections.doctest

20 lines
359 B
Plaintext
Raw Normal View History

2019-10-20 13:16:49 +02:00
.. Copyright (C) 2001-2019 NLTK Project
.. For license information, see LICENSE.TXT
===========
Collections
===========
>>> import nltk
>>> from nltk.collections import *
Trie
----
Trie can be pickled:
>>> import pickle
>>> trie = nltk.collections.Trie(['a'])
>>> s = pickle.dumps(trie)
>>> pickle.loads(s)
{'a': {True: None}}