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 trialJoseph Wardenaar
Python Development Techdegree Graduate 9,703 PointsJust don't know where to go from here.
I have read through several questions and answers at this point. Steven seems to tell one person that the laps should not be one of the attributes in init and tells another that it should. The question posed suggests that laps=0 should be defined right under the class title. Other than those guesses I just don't know what needs to happen here to make this work.
class RaceCar:
laps=0
def __init__(self, color, fuel_remaining, **kwargs):
self.color = color
self.fuel_remaining = fuel_remaining
for key, value in kwargs.items():
setattr(self, key, value)
def run_lap(self, length):
self.laps += 1
fuel_remaining = fuel_remaining - (length * 0.125)
1 Answer
Joseph Wardenaar
Python Development Techdegree Graduate 9,703 PointsI figured it out