I've read that OrderedDict can be used to keep information in a dictionary in order, but it seems to require that you input the information while instantiating the dictionary itself.
However, I need to be able to use update() multiple times in a for loop and ensure the each entry gets added to the end of the dictionary. Is there a way to do that?
Here's a visual of what I'm talking about
for e in entryList:
myDict.update({e[2]: e[3]})
This enters all the new info, but doesn't keep it in order.