Python - Object-Oriented Programming Foundations
Find the error in this code:
class Book:
def __init__(title):
self.title = title
b = Book('Python 101')