SPECIAL_CASE_SCHOOL_2 = 'Father Mercredi'
SPECIAL_CASE_YEAR = '2059
SPECIAL_CASE_DAY = 'Monday'
def get_final_mark(record,coursework,exam): """(str,str,str) -> float
Return the student's final mark in the course with the adjustments accounted for if the student is under the special case category >>> get_final_mark('1,Jacqueline Smith,Fort McMurray Composite,2059, Monday, MAT,90,64,ENG,72,88,Bachelor of Arts','84','92') 90.4 >>> get_final_mark('2,Jacqueline Smith,Father Something School,2041,Thursday, MAT,20,94,ENG,92,88,Bachelor of Science,'77','74') 0.0 >>> get_final_mark('2, Mary Lamb, Fort McMath School, 2023, Wednesday, MAT,82, 63, ENG, 88,89, Bachelor of Commerce','79','82')