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 trial

Python Object-Oriented Python Instant Objects Master Class

Pratham Patel
Pratham Patel
4,976 Points

Could someone help me with this code challenge

I dont see what i did wrong

racecar.py
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
Steven Parker
230,274 Points

You 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
Pratham Patel
4,976 Points

I dont see where i set it to 0

Steven Parker
Steven Parker
230,274 Points

What I'm saying is that you should set it to 0. And not take it in as an argument.

Pratham Patel
Pratham Patel
4,976 Points

I 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
Steven Parker
230,274 Points

The changes I am suggesting will pass both task 2 and task 3.