- 3
Fill in the blanks to create a class and its constructor, taking one argument and assigning it to the "name" attribute.
Then create an object of the class class student: def __init__ (self, name): self _________ = name test = Student ("Bob")
1 Antwort
0
self.name=name