Python - Constructors and Object Initialization
What will be the output of this code?
class Car:
def __init__(self, brand):
self.brand = brand
my_car = Car('Toyota')
print(my_car.brand)