I need help with a pprint function. I'm trying to make a program that records student ID numbers, their names, age, class rank, and gpa. I need to use a pprint() function to print the dictionary out. Here's my code so far.
student=dict()
student['ID']= raw_input ("What is your student ID number?")
student['name']= raw_input ("What is your name?")
student['age']= raw_input ("How old are you?")
student['rank']= raw_input ("What is your class rank?")
student['gpa']= raw_input ("What is your current GPA?")
What do I need to do? I've tried multiple variations of code, but nothings working. Thanks!