##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1460 - No Title.py
# Description: No Title
##############################################################################
class Counter:
instances = 0
def __init__(self):
self.counter = 0
Counter.instances += 1
def increment(self):
self.counter += 1