コメント欄にご指摘いただいたので修正(everes さん あざーす)
※超基本的なとこ抜けてた(´・ω・`)申し訳ないです。
超簡単な方法をコメント欄にいただいた。(nullpobugさん あざーす)
こんなんでいいんだっけ?よくなかったので修正
#!/usr/bin/env python # *-# -*- coding: utf-8 -*- class Counter: def __init__(self): self.count = 0 def increase(self): self.count += 1 return self.count
実行結果
>>> c = Counter() >>> c.increase() 1 >>> c.increase() 2 >>> c.increase() 3 >>> c.increase() 4 >>> c.count 4 >>> c.count 4 >>>