I have a data structure which essentially amounts to a nested dictionary. Let\'s say it looks like this:
{\'new jersey\': {\'mercer county\': {\'plumbers\':
Just because I haven't seen one this small, here's a dict that gets as nested as you like, no sweat:
# yo dawg, i heard you liked dicts def yodict(): return defaultdict(yodict)