I currently have a dictionary that's formatted in this way:
{state: {region: {place: [name, address]}}}
There are a lot of regions, places, etc... it was probably a really bad idea to write a program that collects information in that manner, but it's too late now. Does anyone have an idea how I could possible start digging through this huge dictionary and turn it into something like:
name, state, region, address,
name, state, region, address,...
Even
name, state, address,
name, state, address,...
would be enough. I'm getting way too confused trying to make a function to sort it like that, is it even possible?