Constructor method: __init__()

class Dog(): # definition of the class ("blueprint")
  
  def __init__(self, breed, age, color):
    self.breed = breed
    self.age = age
    self.color = color
    
    
# main code chunk
a = Dog('pug', 3, 'black')
b = Dog('boxer', 2, 'white')
print(a.breed)
pug