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 trialRico Hodges-Smikle
Courses Plus Student 2,609 PointsHey, I'm having trouble getting past task 2 of this challenge. I've been stuck here for a long time. Can anyone help me?
class RaceCar:
laps = 0
def __init__(self, color, fuel_remaining, **kwargs):
self.color = color
self.fuel_remaining = fuel_remaining
for key, value in kwargs.items():
setattr(self, key, value)
def run_lap(self, length):
self.length = (fuel_remaining - (length * 0.125))
laps = self.laps + 1
1 Answer
Nikolai Olekhnovitch
Front End Web Development Techdegree Graduate 25,617 PointsHello,
In run_lap, you have to set fuel_remaining to a new value and not length.
Let me know if this helps!
Rico Hodges-Smikle
Courses Plus Student 2,609 PointsRico Hodges-Smikle
Courses Plus Student 2,609 PointsNikolai Olekhnovitch. Sorry, I'm still not getting it, can you shed any further light?
Nikolai Olekhnovitch
Front End Web Development Techdegree Graduate 25,617 PointsNikolai Olekhnovitch
Front End Web Development Techdegree Graduate 25,617 PointsThe instructions state: "It should reduce the fuel_remaining attribute by the length argument multiplied by 0.125 (length * 0.125)."
So fuel_remaining should be reduced every time run_lap is used. As it is right now, your code is reducing length and not fuel_remaining.
Also, you can use -= for fuel_remaining and += for laps to shorten the code.