Logo
2

Write a Python program to create a class named Book with the following specifications:

  • The class should have two instance variables: title and author.

  • Define a constructor method that initializes both variables to a default value of "None".

  • Add a method named get_description that returns a string formatted as "Title: [title], Author: [author]".

  • Create an object of the Book class with a title and author of your choice.

  • Call the get_description method on this object and print the result.

mentalmavensmentalmavens asked a year ago

·

Answers

2

Here u go

class Book:
    def __init__(self, title = None, author = None):
        self.title = title
        self.author = author
    
    def get_description(self):
        return(f"Title: {self.title}, Author: {self.author}")
    
    def __str__(self):
        return(f"{self.get_description()}")

b = Book("n", "nn")
desc = b.get_description()
print(b)

davidmacagodavidmacago answered a year ago

Post your answer

Recommended Books

Reading books is a great way to learn. Here are some of the books we recommend.