Question

Consider this program:

class Students:

    def __init__(self, name, grade):

        self.name = name

        self.grade = grade

 

student34 = Students("Maria", 10)

student35 = Students("Jane", 9)

print(student36.name)

What is the output?

(1 point)
Responses

Maria

Maria

Jane

Jane

student36.name

student36.name

an error message

Answers

Answered by GPT 3.5
The output of this program is an error message.
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions