Trace the function and write your answer in the box below ju…
Trace the function and write your answer in the box below just as it would appear in the Command Area after executing the function below. def creditHours(credits, summerGPA): springGPA = 3.0 print(“I am taking ” + str(credits) + ” credits this semester”) print(“Last semester I took ” + str(float(credits + 2))) print(“My GPA average is ” + str((springGPA + summerGPA) / 2))Test Case:>>> creditHours(16, 3.5)
Read Details