Write a program that does the following:
Using the assignment statement below, create a dictionary with points scored by each of the Philadelphia 76ers against the Brooklyn Nets on April 20, 2019.
points = dict(Harris=24, Butler=11, Embiid=31, Simmons=15, Reddick =9, Scott=8, Ennis=7, Marjanovic=4, Bolden=1, McConnell=2)
Iterate the dictionary once, resulting in a printout that shows us:
a list of the players and the points they each scored, with one player on each line.
the total number of points they scored.
the name of the highest scorer on the team.
We can see that Embid with 31 points was the high scorer, but your software to find the highest score should search the dictionary for the highest score and work even if the data is changed. You can do this by having a variable for the maximum score that is initialized to zero and a variable for the player with the highest score .
The items() function for dictionaries described starting at the top of page 5 in LCS Notes about Python Dictionaries will be useful for your python dictionaries assignment.
You should iterate the loop and for each score in the dictionary, if it is higher than the maximum, it becomes the new maximum and the name that goes with that score becomes the new highest scorer. When the loop is done, you can print the resulting player and score.
As with your list assignment, you should not use the built-in maximum function, but find the maximum with a loop similar to what you did in the list assignment.