Programming Examples
Python Program to Create a dictionary whose keys are month name and whose values are number of days in the corresponding month
Create a dictionary whose keys are month name and whose values are number of days in the corresponding month:
(a) ask the user to enter the month name and use the dictionary to tell how many days are in month .
(b) print out all of the keys in alphabetical order .
(c) print out all of the month with 31 days.
(d) print out the (key - value) pair sorted by the number of the days in each month .
Output/ Explanation: