-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal_marks.py
More file actions
39 lines (29 loc) · 1.44 KB
/
final_marks.py
File metadata and controls
39 lines (29 loc) · 1.44 KB
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
import pandas as pd
import os
import csv
def marks_reader(file_path,ID,set_number):
if set_number == "SET1":
set_number = "SET1_ORANGE"
if set_number == "SET2":
set_number = "SET2_PINK"
if set_number == "SET3":
set_number = "SET3_YELLOW"
data = pd.read_csv(f"{file_path}/Output Marks.csv")
total_marks = int(data['Marks'][0])+int(data['Marks'][1])+int(data['Marks'][2])
output_data = [ID,set_number,"",data['Marks'][0],"",data['Marks'][1],"",data['Marks'][2],total_marks]
return output_data
current_directory = os.getcwd()
submission_path = os.path.join(current_directory,"Output Folder/Student Submissions")
marks = []
for sets in os.listdir(submission_path):
submission_set_path = os.path.join(submission_path,sets)
for IDnumber in os.listdir(submission_set_path):
script_directory = os.path.join(submission_set_path,IDnumber)
marks.append(marks_reader(script_directory,IDnumber,sets))
file_path = os.path.join(current_directory,"Output Folder/Final Marks.csv")
with open(file_path, mode='w', newline='') as file:
writer = csv.writer(file)
# Write the header row
writer.writerow(['ID', 'SET','Question One Code Correctness','Question One Output Marks','Question Two Code Correctness','Question Two Output Marks','Question Three Code Correctness','Question Three Output Marks','Total Marks'])
# Write the student data rows
writer.writerows(marks)