How to make two-level nested defaultdict in Python
In order to make a defaultdict
that contains defaultdicts
of dict
, use
my_doc = defaultdict(lambda: defaultdict(dict))
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow