Question: The code must be written in python language by PyCharm 1- Given a dictionary that contains numbers and their positions. Your task is to build
The code must be written in python language by PyCharm

1- Given a dictionary that contains numbers and their positions. Your task is to build a list from this dictionary. Example Sample_dic = {1:3,7:2,9:1,3:0} -> (3,9,7,1] You have to submit a screenshot for the output when input = {10:3,9:2,8:1,7:0} 2- Given a dictionary contains the student ID and his mark. Write python code to read the marks and compute the average, minimum and maximum. Note: 'w' means that the student dropped this course, So you should not count this mark in the average. You have to submit a screenshot for the output when input = Sample_dic = {1:95,22:85, 2:96, 3:92, 4:'w', 5:"92"}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
