Tested using CircuitPython 6.2.0 on the FunHouse.
test = {"a": "A", "b": "B", "c": "C"}
>>> test
{'c': 'C', 'a': 'A', 'b': 'B'}
Here it is in CPython:
>>> test = {"a": "A", "b": "B", "c": "C"}
>>> test
{'a': 'A', 'b': 'B', 'c': 'C'}
The CPython result is what I would expect for both.
Tested using CircuitPython 6.2.0 on the FunHouse.
Here it is in CPython:
The CPython result is what I would expect for both.