Python - Classes and Object Lifecycle
Identify the error in this code snippet:
class Book:
def __init__(self, title):
self.title = title
b = Book('1984')
print(Book.title)