When I access the elements in 2 dictionaries that are mapped using the same keys, do they get accessed in the same order at all times?
For example, say I have dictionary 1 and dictionary 2.
Dictionary 1:
Key 1: a1
Key 2: a2
Dictionary 2:
Key 1: b1
Key 2: b2
If I access the elements of these 2 dictionaries using a for loop, using something like this:
for element in dictionary.values():
Can I then match up a1:b1
and a2:b2
?