You are viewing a single comment's thread. Return to all comments →
Pretty easy challange *My code: *
class MyBook(Book): def __init__(self, title, author, price): super().__init__(title, author) self.price = price def display(self): print("Title: " + self.title) print("Author: " + self.author) print("Price: " + str(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 →
Pretty easy challange *My code: *