How to insert dict key after specific key

How can I insert key with value after specific key in a dictionary

Example:

{“key1”: 5, “key2”: 10, “key3”: 15, “key4”: 20}

I want to insert after “key2”

“key5”: 25

Final result something like this

{“key1”: 5, “key2”: 10, “key5”: 25, “key3”: 15, “key4”: 20}

You can’t. Dictionaries aren’t really ordered; technically they preserve the order that items are added to the dictionary, but that’s something you’re better off forgetting about except when it comes to writing doctests. If you want to access the keys in a specific sequence, you are going to have to make a separate list of the keys and sort or keep it in the order you want yourself.

Why do you think you need to do this?

1 Like