-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
56 lines (50 loc) · 1.05 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from openpyxl import Workbook
from openpyxl.utils import get_column_letter
from openpyxl.styles import Font
data = {
"Scofield": {
"Music": 65,
"Science": 68,
"Geometry": 19,
"Chemistry": 89
},
"Lincoln": {
"Music": 55,
"Science": 22,
"Geometry": 96,
"Chemistry": 95
},
"Julia": {
"Music": 100,
"Science": 52,
"Geometry": 75,
"Chemistry": 92
},
"Nicole": {
"Music": 30,
"Science": 70,
"Geometry": 33,
"Chemistry": 100
},
"Rose": {
"Music": 100,
"Science": 46,
"Geometry": 80,
"Chemistry": 60
}
}
wb = Workbook()
ws = wb.active
ws.title = "School Grades"
headings = ['Name'] + list(data['Scofield'].keys())
ws.append(headings)
for person in data:
grades = list(data[person].values())
ws.append([person] + grades)
for col in range(2, len(data['Scofield']) + 2):
char = get_column_letter(col)
ws[char + "7"] = f"=SUM({char + '2'}:{char + '6'})/{len(data)}"
for col in range(1, 6):
ws[get_column_letter(col) + '1'].font = Font(bold=True, color="0000CCFF")
ws[get_column_letter(1) + "7"] = "AVG"
wb.save("TurtleCode.xlsx")