I only want to do a very simple think, not reverse the key to value but only reverse the order of dictionary from
{'a':1, 'f':3: 'd':2}
to this
{'d':2, 'f':3: 'a':1}
I don't need key value switching like some many solution out there.. Yes it's doesn't mean anything in the functionality but i just need that for "eye catching" json structure.
Is there any way to do that?