You are viewing a single comment's thread. Return to all comments →
Just MyBook class Python implementation code:
# Write MyBook class class MyBook(Book): def __init__(self, title, author, price): self.title = title self.author = author self.price = price def display(self): print(f"Title: {self.title}") print(f"Author: {self.author}") print(f"Price: {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 →
Just MyBook class Python implementation code: