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 trialMaher Wardak
4,595 PointsRaceCar challenge
Im not sure what is wrong with my code?
Also can someone explain why we use the for loop and setattr. Its been difficult to understand.
class RaceCar:
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)
1 Answer
Steven Parker
231,248 PointsThere could be multiple items, and the "for" loop goes through each of them one by one. The "setattr" then sets the value for each particular item.
But it won't be considered inside the loop (and won't work) unless it is indented one more stop.
Maher Wardak
4,595 PointsMaher Wardak
4,595 PointsThanks Steven