Skip to content

Instantly share code, notes, and snippets.

@raelmax
Created December 21, 2012 13:21
Show Gist options
  • Save raelmax/4352783 to your computer and use it in GitHub Desktop.
Save raelmax/4352783 to your computer and use it in GitHub Desktop.
>>> class Classe(object):
... def __init__(self):
... print "Output!"
...
>>> var = Classe
>>> var
<class '__main__.Classe'>
>>> var()
Output!
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment