Consider this program:

class Students:
def __init__(self, name, grade):
self.name = name
self.grade = grade
student34 = Students("Maria", 10)
student35 = Students("Jane", 9)
How many classes are created?
none
one
two
three

Two classes are created: the Students class and the main class which holds the student34 and student35 instances.