我需要有关 pprint 功能的帮助。我正在尝试制作一个记录学生证号、姓名、年龄、班级排名和 gpa 的程序。我需要使用 pprint() 函数来打印字典。到目前为止,这是我的代码。
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?")
我需要做什么?我尝试了多种代码变体,但没有任何效果。谢谢!