+ 1
I am confused..python3. Create dictionary of record book that includes students' test scores and grades
Dict1=["name":John???
11 Respostas
+ 4
About dictionaries
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2450/
+ 3
About dictionaries functions
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2451/
+ 2
You can make a list of dict, like this
students = [
{"score" :80, "grade" :"B"},
{"score" :63, "grade" :"C"}
]
Happy to Help..!!
+ 1
Ok thanks...I'll try first thing tomorrow
+ 1
Ok...very tired and confused. This the last problem..#7.
#7. Using a dict - recordbook with total and grade.
Define functions to calculate t and g with studict1,studict2,stud3 as an input arg. While iterating recordbook using for statement,
+ 1
Run John output ['John', 50,135,175,360,'C']
+ 1
Oh dict1 does not have total and grade
+ 1
Not solving....7 parts. That's just a small part. Trying to understand. Previous questions have to be done to get to the end.
+ 1
I've corrected a few areas.
+ 1
I dont understand now why values are added after I run