# -*- coding: utf-8 -*- class shirt(object): """A shirt that will be washed repeatedly. """ def __init__(self, size, color): self.size = size self.color = color self.washes = 0 def wash(self): """Count how often I was washed. """ self.washes += 1