Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Pratham 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
220,378 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
220,378 PointsSteven Parker
220,378 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
220,378 PointsSteven Parker
220,378 PointsThe changes I am suggesting will pass both task 2 and task 3.