Which statement about Python dictionaries since version 3.7 is correct?
- A They preserve insertion order
- B They are automatically sorted by key
- C They cannot be nested
- D Keys must be strings
Answer
They preserve insertion order
Insertion order preservation became a language guarantee in 3.7, having been an implementation detail of CPython 3.6.





