CBSE Class 12 Computer Science
Question 42 of 120
Review of Python Basics — Question 16
Back to all questionsDay = {1: 'monday', 2: 'tuesday', 3: 'wednesday'}
Reason — The syntax of dictionary declaration is:
<dictionary-name> = {<key>:<value>, <key>:<value>}
According to this syntax, Day = {1:'monday', 2:'tuesday', 3:'wednesday'} is the correct answer.