How can I convert a defaultdict
number_to_letter
defaultdict(<class 'list'>, {'2': ['a'], '3': ['b'], '1': ['b', 'a']})
to be a common dict?
{'2': ['a'], '3': ['b'], '1': ['b', 'a']}
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You can simply call dict:
>>> a
defaultdict(<type 'list'>, {'1': ['b', 'a'], '3': ['b'], '2': ['a']})
>>> dict(a)
{'1': ['b', 'a'], '3': ['b'], '2': ['a']}
but remember that a defaultdict is a dict:
>>> isinstance(a, dict) True
just with slightly different behaviour, in that when you try access a key which is missing — which would ordinarily raise a KeyError — the default_factory is called instead:
>>> a.default_factory <type 'list'>
That’s what you see when you print a before the data side of the dictionary appears.
So another trick to get more dictlike behaviour back without actually making a new object is to reset default_factory:
>>> a.default_factory = None
>>> a[4].append(10)
Traceback (most recent call last):
File "<ipython-input-6-0721ca19bee1>", line 1, in <module>
a[4].append(10)
KeyError: 4
but most of the time this isn’t worth the trouble.
Method 2
If your defaultdict is recursively defined, for example:
from collections import defaultdict recurddict = lambda: defaultdict(recurddict) data = recurddict() data["hello"] = "world" data["good"]["day"] = True
yet another simple way to convert defaultdict back to dict is to use json module
import json data = json.loads(json.dumps(data))
and of course, the values contented in your defaultdict need to be confined to json supported data types, but it shouldn’t be a problem if you don’t intent to store classes or functions in the dict.
Method 3
If you even want a recursive version for converting a recursive defaultdict to a dict you can try the following:
#! /usr/bin/env python3
from collections import defaultdict
def ddict():
return defaultdict(ddict)
def ddict2dict(d):
for k, v in d.items():
if isinstance(v, dict):
d[k] = ddict2dict(v)
return dict(d)
myddict = ddict()
myddict["a"]["b"]["c"] = "value"
print(myddict)
mydict = ddict2dict(myddict)
print(mydict)
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0