Write the code to create the GetCredits function below. Use…
Write the code to create the GetCredits function below. Use the comments as your guide. Hint, you will need a while loop, an if, and exception handling: #Function GetCredits#Return: 1 int for total credits completed#Parameters: 1 string for name#Purpose: Ask the user how many credits they have completed, and validate the user input to ensure the entry is a number not text, and the number is between 1 and 120 def GetCredits(): #something might go inside these () #Declare and initialize any variables needed #Prompt user for number of credits completed (calling the user by name in the prompt), and validate the user entry is a number using exception handling or show an error message and ask again #Also validate that the number entered is between 1 and 120, or show an error message and ask again #return credits completed