I don’t get this. here’s my code. where will I put this self.estimated_insurance_cost() . so it will update the cost based on the new age
def update_age(self, new_age):
self.age = new_age
return "{Name} is now {Age} years old.".format(Name = self.name, Age = self.age)