What is the correct structure for creating a dictionary of month names to be accessed by month numbers?

What is the correct structure for creating a dictionary of month names to be accessed by month numbers?



Answer: { 1 : 'January', 2 : 'February', 3 : 'March' }


Learn More :