Question: 1. Write a class definition named Book. The Book class should have data attributes for a books title, the authors name, and the publishers name.
1. Write a class definition named Book. The Book class should have data attributes for a books title, the authors name, and the publishers name. The class should also have the following:
(A) An _ _init_ _ method for the class. The method should accept an argument for each of the data attributes.
(B) Accessor and mutator methods for each data attribute.
(C) An _ _str_ _ method that returns a string indicating the state of the object.
Add this code to the bottom of the file, and run the program.
''' Unit Test ''' if __name__ == "__main__": book = Book("The Cat in the Hat", "Dr. Seuss", "Random House") print(book)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
