2) Storing data and adding to data in a dictionary: Experiment with Python dictionaries and their keys () member function that returns a list of a dictionary's keys. You can check if a particular key is in a dictionary by using the in test with the keys list. For example, if our dictionary is MyDict = { 1: 'One', 2: 'Two', 3: 'Three' } Then ( 2 in MyDict.keys() ) evaluates to True, indicating that 2 is a valid key for MyDict. Write a Python program that, in a loop, asks the user for a name and then a numerical score, and then asks whether to do another. The user may enter the same name more than one time. When a name is entered, check in the name is already in the dictionaries keys. If it is not (if it's a new name), then add a new pair to the dictionary consisting of the name as the key and the entered score inside a list as the value. If the name is already among the dictionary keys (the name already has one or more scores stored for it), then append the current entered score to the end of the list for that name. When the user is done entering names and scores, create a sorted list of the names. Then, using the sorted list, neatly print out each name and the average score for that name. See the sample output below for an adequate implementation. C:\Users\brokow\UCM Classes \ME 02112019 Spring Assignments >HW04_02.py Enter a name: Jimbo Enter a score for Jimbo: 15 Enter more data (y) ? y Enter a name: Jolene Enter a score for Jolene: 21 Enter more data (y)? y Enter a name: Carlos Enter a score for Carlos: Enter more data (y) ? y 19 Enter a name: Jolene Enter a score for Jolene: Enter more data (y)? y 22 Enter a name: Jimbo Enter a score for Jimbo: 18 Enter more data (y) ? n Carlos has average score 19.00 Jimbo has average score 16.50 Jolene has average score 21.50