I have a dictionary:
d = {'A': 1, 'B': 2, 'C':3}
I need the Key 'A' to always be first in this dict because certain processes throughout the program depend on it being there.
While performing operations on this dictionary it will get unordered.
What is the easiest to ensure 'A' remains the first key throughout this program no matter operations I perform on it?