You are viewing a single comment's thread. Return to all comments →
python solution :
class MyBook(Book): def init(self, title, author, price): super().init(title, author) self.price = price def display(self): print(f"Title: {self.title}\nAuthor: {self.author}\nPrice: {self.price}")
Seems like cookies are disabled on this browser, please enable them to open this website
Day 13: Abstract Classes
You are viewing a single comment's thread. Return to all comments →
python solution :
class MyBook(Book): def init(self, title, author, price): super().init(title, author) self.price = price def display(self): print(f"Title: {self.title}\nAuthor: {self.author}\nPrice: {self.price}")