Python - Constructors and Object Initialization
Find the error in this constructor:
class Book:
def __init__(title, author):
self.title = title
self.author = author