class Counter: def __init__(self): self.counter = 0 def nextCount(self): counter = self.counter self.counter += 1 return counter