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