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 trialPratham Patel
4,976 PointsCould someone help me with this code challenge
I dont see what i did wrong
class RaceCar:
def __init__(self, color, fuel_remaining, **kwargs, laps):
self.color = color
self.fuel_remaining = fuel_remaining
self.laps = laps
for key, value in kwargs.items():
setattr(self, key, value)
def run_lap(self, lenth):
self.fuel_remaining -= lenth * 0.125
self.laps += 1
1 Answer
Steven Parker
231,269 PointsYou have an extra argument.
The instructions don't say that __init__
should take an argument for laps. You'll just set it to 0.
Pratham Patel
4,976 PointsPratham Patel
4,976 PointsI dont see where i set it to 0
Steven Parker
231,269 PointsSteven Parker
231,269 PointsWhat I'm saying is that you should set it to 0. And not take it in as an argument.
Pratham Patel
4,976 PointsPratham Patel
4,976 PointsI just want to let you know that i am on the third task not the second. I already completed the second task and need help on the third. The code above is what i wrote for the third task and its not working.
Steven Parker
231,269 PointsSteven Parker
231,269 PointsThe changes I am suggesting will pass both task 2 and task 3.