Class - Steps 1. Create class 2. Create three instance methods within the class - Initiator method, asigned value argument to value object. - increment method, change value object attribute - decrement method, change value object attribute 3. Create instance 4. Call instance methods POINT : Must create instance first, call it then. 1. class Counter(): 2. def __init__(self, value=0): self.value=v..