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 trialTatenda 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,971 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