Hello I am having trouble making a function that reverses any dictionary given to it but without any special libraries. For example
D = {one:uno, two:dos}
would return that dictionary as D = {uno:one, dos:two}
I am asking the reverse order for both the key and value not just key, this is very different