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 trial

Python Object-Oriented Python Instant Objects Master Class

Sanjay Devadkar
PLUS
Sanjay Devadkar
Courses Plus Student 1,016 Points

First, create a class named RaceCar. In the __init__ for the class, take arguments for color and fuel_remaining. Be sure

How to solve below code and please explain it's bit difficult to me to understand. First, create a class named RaceCar. In the init for the class, take arguments for color and fuel_remaining. Be sure to set these as attributes on the instance.

Also, use setattr to take any other keyword arguments that come in.

racecar.py
class RaceCar:
    def __init__(self, color, fuel_remaining):
        setattr(

1 Answer

Ray Karyshyn
Ray Karyshyn
13,443 Points

Your almost there!

You successfully created a class and allowed arguments for color and fuel_remaining to be given.

To set these as attributes on the instance of the class you can use setattr() or with dot notation.

For example to add a color attribute of "blue" to a class named Eye, you could either do:

class Eye:
    def __init__(self, color):
        setattr(self, color, "blue")
#  or
class Eye:
    def __init__(self, color):
        self.color = blue