Question
kindly use python It is required to keep a record of student data. You must ask the number of students whose information you want to
kindly use python
It is required to keep a record of student data. You must ask the number of students whose information you want to register and proceed to read the data from the keyboard. The data that is required to register are: ID, name, surname, age. The data must be stored in a dictionary of dictionaries where the external dictionary will have the ID as key and the value corresponding to the ID key will be an internal dictionary whose keys are the remaining data. For example, the data for ID 0105 of Miguel Ziga, 40 years old, will be stored as follows { "0105": {"name" : "Miguel", "surname" : "Ziga", "age" : 40}}
Once the data has been read, it should be displayed in table form as follows_ ID Name Surname Age 0105 Miguel Zuniga 40
QUALIFICATION CRITERIA Store data in a dictionary-of-dictionaries structure: 3 points Display dictionary data in table form as shown in the example: 2 points
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started