Add a method to the Car class called age that returns how old the car is (2020 - year)
*Be sure to return the age, not print it*
class Car:
def __init__(self,year, make, model):
self.year = year
self.make = make
self.model = model
class Car:
def __init__(self,year, make, model):
self.year = year
self.make = make
self.model = model
def age(self):
return 2020 - self.year