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
= Dog('pug', 3, 'black')
a = Dog('boxer', 2, 'white')
b print(a.breed)
pug