Question: Create a dictionary to store days as key and number for each dayas follows. Write a Python script to sort this dictionary BY VALUEin ascending

Create a dictionary to store days as key and number for each dayas follows. Write a Python script to sort this dictionary BY VALUEin ascending and descending orders. Print out the results asfollows,

1. Create a dictionary to store days as key and number for

1. Create a dictionary to store days as key and number for each day as follows. Write a Python script to sort this dictionary BY VALUE in ascending and descending orders. Print out the results as follows, {"Tuesday": 2, 'Sunday': 7, 'Monday': 1, 'Thursday': 4, 'Friday': 5, 'Wednesday': 3, 'Saturday': 6} Output in ascending order: Monday => 1 Tuesday => 2 Wednesday => 3 Thursday => 4 Friday => 5 Saturday => 6 Sunday => 7 Output in descending order: Sunday => 7 Saturday => 6 Friday => 5 Thursday => 4 Wednesday => 3 Tuesday => 2 Monday => 1

Step by Step Solution

3.54 Rating (158 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Python version 36 Python program to create a dictionary and then display the contents of the diction... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!