-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
17 lines (14 loc) · 1.25 KB
/
database.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
students = { '12210420': ["First_name", "Last_name", "Korean_name", "1234567", "mypassword", "Birth", "Email",
{"Software Prog" : {"Midterm" : 18, "Final Exam" : 20},
"System Programming" : {"Midterm" : 15, "Final Exam" : 16}
},
{"Discrete Mathematics[202101-ACE1312-002]" : [1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1],
'Software Programming[202101-IGS1131-001]' : [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0]}
]
}
courses = {'Software Programming[202101-IGS1131-001]' : ["2021-03-08", "2021-03-15", "2021-03-22", "2021-03-29",
"2021-04-05", "2021-04-12", "2021-04-19", "2021-04-24",
"2021-04-26", "2021-05-03", "2021-05-10", "2021-05-17"],
'Discrete Mathematics[202101-ACE1312-002]' : ["2021-03-09", "2021-03-16", "2021-03-23", "2021-03-30",
"2021-04-06", "2021-04-13", "2021-04-20", "2021-04-27",
"2021-05-04", "2021-05-03", "2021-05-11", "2021-05-18"]}