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.

Tatenda Chimonera
4,509 PointsWhat is wrong with my code
I am not able to pass the racecar challenge
class RaceCar:
def __init__(self,color,fuel_remaining,laps=0,**kwargs):
self.color=color
self.fuel_remaining=fuel_remaining
self.laps=laps
for key,value in kwargs.items():
setattr(self,key,value)
def run_laps(self,length):
self.laps+=1
self.fuel_remaining=self.fuel_remaining-(length*0.125)
2 Answers

KRIS NIKOLAISEN
54,703 PointsSome hints:
- the method to add is
run_lap
without the s - the indentation of
def run_lap()
should align withdef __init__
so they are separate - you don't need to pass in laps as a argument for init
- but you will need to set the instance of laps to 0 (task 2 or 3) in init

Tatenda Chimonera
4,509 PointsThank you very much i got it