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
Solution
class Car:
def __init__(self,year, make, model):
self.year = year
self.make = make
self.model = model
def age(self):
return 2020 - self.year
No comments:
Post a Comment