Computer Science

Which of the statement(s) is/are correct?

  1. Python Dictionary is an unordered collection of items.
  2. Python Dictionary is a mapping of unique keys to values.
  3. Dictionary is mutable.
  4. All of these

Python Dictionaries

1 Like

Answer

All of these

Reason — Python dictionaries are unordered collections of items where each item is a mapping of unique keys to values and dictionaries are mutable.

Answered By

1 Like


Related Questions