Write the special method __str__() for CarRecord. Ex: if year_made is 2009 and car_vin is ABC321, then the sample program should print:
Year: 2009, VIN: ABC321
GIVEN:
class CarRecord:
def __init__(self):
self.year_made = 0
self.car_vin = ''
# FIXME add __str__()
'''Your solution goes here'''
my_car = CarRecord()
my_car.year_made = 2009
my_car.car_vin = 'ABC321'
print(my_car)