You might want to consult this.
http://www.ibiblio.org/g2swap/byteofpython/read/object-methods.html
On Tue, Apr 1, 2008 at 9:43 PM, <[EMAIL PROTECTED]> wrote:
> I can't get call a class for some reason. This must be one of those
> newbie questions I hear so much about:
>
> class wontwork:
>
Try this.
class wontwork:
def really(self):
print "Hello World"
wontwork().really()
On Tue, Apr 1, 2008 at 9:43 PM, <[EMAIL PROTECTED]> wrote:
> I can't get call a class for some reason. This must be one of those
> newbie questions I hear so much about:
>
> class wontwo