There is a dictionary named quizScores, which has students n…

There is a dictionary named quizScores, which has students names for the key and their quiz score for the value. There is a variable named name, which contains the name of a student. Write a function that accepts the dictionary and name variables. In the function write the code to determine if that student has taken the quiz or not. If they have taken the quiz display the result on screen, if not, state that they have not taken the quiz. The function does not return anything. Calling the function could look like: printStatus (quizScores, name)