OneBite.Dev - Coding blog in a bite size

declare an object in python

Code snippet on how to declare an object in python

class Car: 
  def __init__(self, model, color): 
    self.model = model 
    self.color = color

This is a basic example of how to declare an object in Python. To break it down, first we declare a new class called Car. This class is used to create objects that will represent a car. Inside our class, we create a special method called init which is a constructor for the class that is called when an object of the class is instantiated. This method accepts two arguments, model and color. We then use the self keyword to store the values from the arguments inside the newly created object as object properties or instance variables. So when we create a car object, it will have model and color properties.

python