In the provided program, there is only one class defined, which is the Students
class. Therefore, the answer is:
one
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
three
Skip to navigation
1 answer
In the provided program, there is only one class defined, which is the Students
class. Therefore, the answer is:
one