Quiz Question 1 of 5
Given the dictionary days = {"Sunday": 1, "Monday": 2, "Tuesday": 3}
, which of the following statements is true regarding its structure and functionality in Python?
Choose the correct answer below:
-
A
The
days
dictionary is ordered by the insertion of keys, and the keys are immutable. -
B
The
days
dictionary’s keys are case-sensitive, and duplicate keys are not allowed. -
C
The
days
dictionary can have duplicate keys if the corresponding values are different. -
D
The
days
dictionary cannot have more than three key-value pairs.