Python - Object-Oriented Programming Foundations
What will be the output of this code?
class Book:
def __init__(self, title):
self.title = title
b = Book('Python 101')
print(b.title)