I know that normally the order of keys/values in a dictionary is arbitrary. However, if you declare a dictionary "longhand" (see below) and then never add or remove any keys, does this mean that the key order will be kept as you declared it?
I've done a couple of brief experiments and the answer seems to be Yes, but before I count on this, I wanted to make sure.
When I say "longhand", I just mean an explicit declaration of each key & value all at a shot:
myDict = {key1: val1, key2: val2, key3: val3, .... }