File: LP6E/Chapter32/hack_static_deco.py

class Hack:
    numInstances = 0
    def __init__(self):
        Hack.numInstances += 1

    @staticmethod
    def printNumInstances():
        print('Number of instances:', Hack.numInstances)



[Home page] Books Code Blog Python Author Train Find ©M.Lutz