import matplotlib.pyplot as plt class Circle(object): def __init__(self, radius = 3, color = \'blue\'): self.radius = radius self.color = color