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 trialTaylor Fritz
13,265 PointsTrouble setting the attribute and incrementing by one..
Having trouble with this code challenge and not getting any hints as to what the issue is. Can someone help?
I am supposed to add a 'laps' attribute to the RaceCar class and set it to 0. Then in the method, 'run_lap', I need to increment laps by one every time that method is ran.
I've tried everything and I'm not figuring it out.
TIA!
class RaceCar:
def __init__(self, laps=0, color, fuel_remaining, **kwargs):
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, length):
fuel_remaining - (self.length * 0.125)
laps += 1
1 Answer
Micah Taylor
1,895 Pointslaps is defined within init. Because it isn't a global variable it can't be used outside of that function.
Taylor Fritz
13,265 PointsThat makes sense but how would I increment that attribute by one when run_lap is called if that attribute is not global? I've tried making defining it globally and still can't get the code to work.
Taylor Fritz
13,265 PointsTaylor Fritz
13,265 PointsI figured it out by looking through some answers on the other instances of this question getting asked. I have no idea what I was actually stumped on but I finally got it to work. Here's the correct code for anyone else who stumbles on this..