Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDezhi Zhu
2,662 PointsPlease help
OK, now let's add a method named run_lap. It'll take a length argument. It should reduce the fuel_remaining attribute by length multiplied by 0.125. Oh, and add a laps attribute to the class, set to 0, and increment it each time the run_lap method is called.
class RaceCar:
laps = 0
def __init__(self, color, fuel_remaining, **kwargs):
self.color = color
self.fuel_remaining = fuel_remaining
for key,values in kwargs.items():
setattr(self,key,values)
def run_lap(self,length):
self.fuel_remaining = self.fuel_remaining - self.length * 0.125
laps = laps + 1
1 Answer
Greg Kaleka
39,021 PointsHi Deshi,
I just answered your other question on this same challenge - you're actually closer here. All you need to do is use length
instead of self.length
, which doesn't exist, in your run_lap
method.
Andrew McLane
3,385 PointsAndrew McLane
3,385 PointsHi Greg, how do we know when to set an attribute to the instance inside of a method? Wouldn't length need to be apart of this instance since we are setting attribute fuel_remaining to to the instance?