CBSE Class 12 Computer Science
Question 37 of 105
Python Revision Tour II — 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 this syntax, Day = {1:'Monday', 2:'Tuesday', 3:'wednesday'} is the correct answer.