GMgKe586q6suSQnyqZLlGCooeWM
Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
Home
Me
Search
Tuesday, May 3, 2011
Python - Static Data
>> class One:
... age = 45
... def inc(self):
... One.age = One.age + 1
... def get(self):
... return One.age
...
>> a = One()
>> b = One()
>> a.inc()
>> b.get()
>> a.inc()
>> b.get()
Python - Static Data
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment