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?
(1 point)
Responses
none
none
one
one
two
two
three
3 answers
one
explain why
There is only one class created in this program, which is the "Students" class. The program defines the class "Students" using the class keyword, and then creates two instances of that class called "student34" and "student35". These instances are objects that belong to the "Students" class. Therefore, there is only one class created.