• + 1 comment

    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}")
    
    • + 0 comments

      Let's connect on LinkedIn:

      LinkedIn: https://linkedin.com/in/parsanaderi

      and my GitHub profile as well:

      GitHub: https://github.com/parsanaderix