Assigning Exam Grades. Part II – Moderation

Following from the previous post, there might be instances where the user might need to change the cut-off scores for the various grades so that a desired percentage of students is obtained for each grade – also known as grade moderation. Let’s look at how the code from the previous post could be modified to […]

Assigning Exam Grades.

This post will be focusing on the bisect module available from Python. According to Python documentation, the bisect module provides support for maintaining a list in sorted order without having to sort the list after each insertion. This searching and insertion into a list can be used to assist with a common task that teachers/lecturers […]