Due: Nov 15th at 11:59pm
You will work in main.py. Make sure all the files are in the main project folder
For this project
again and again till the the user tells you they are done
ask the user for a students
take those three items and put them into a dictionary with the structure shown in the purple below.
put each dictionary into a list.
finally after the user tells you they don't want to make any more student records, call
Project7Helper.display_data(<put your list here>)
You will need a while loop, a list, and dictionaries along with input and if statements.
Each dictionary must be in the following format (otherwise my c ode won't work)
|====================================================================|
| "name"
: <name of a student as a
string>
|
| "credits"
: <the number of credits as student has as an int>
|
| "gpa"
: <the student's gpa as
float>
|
|====================================================================|
After You finish writing the program, create a new file called readme.txt. In that file put
The answers to these questions will be about 1/3 of the credit for the project.
Of course put this into git and onto github sooner rather than later.
Additional requirements:
Your code must be commented. you don't have to comment every line, but you
need to explain to me what you are doing in the code.
As with the previous project, to submit the project to me, share it with me on github. My github id is jsantore. You can see directions for doing this here.