Final answer:
The GradeBook class for the Python homework manages quiz grades and student information, utilizing class and instance variables to maintain separate grade lists and object counts.
Step-by-step explanation:
The GradeBook class in the context of this Python homework involves creating and managing student grades. In the Python program, the user inputs names for two students, and the program tracks the number of GradeBook objects via a class variable. Each GradeBook object corresponds to an individual student and holds personal attributes like the student's name and a list of quiz grades.
The class includes a constructor to initialize these attributes, a method to add quiz grades (quizScore), and a method to compute current grades average (currentAverage). A simple user-interface loop is provided to interact with the GradeBook objects, allowing for quiz grades to be added and current averages to be displayed for each student. The design ensures individual grade lists are separate and the count of objects is appropriately managed, according to the given requirements.