ShriRam Changed status to publish August 21, 2023
class JustCounter:
__secretCount = 0
def count(self):
self.__secretCount += 1
print(self.__secretCount)
counter = JustCounter()
counter.count()
counter.count()
print(counter.__secretCount)
ShriRam Changed status to publish August 21, 2023