![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: member variables in python
From: Fredrik Lundh <fredrik@pythonware.com>
Date: Fri Mar 31 2006 - 18:20:08 CEST
"PyPK" wrote:
> hi how do I write this better with member variables rather than global
you mean something like
class AA:
def __init__(self):
def methods(self, value):
# ...
aa = AA()
?
</F>
|