# Homework 26, problem 1: Counter object. # # Build a Counter class with: # self.count -- starts at 0 # inc() -- adds 1 # get() -- returns the current count # reset() -- sets count back to 0 # # Call them in sequence and print the value at each step. # # Run with: python exercises/26/homework/01-counter-object.py # Your code goes here: