Skip to content

Instantly share code, notes, and snippets.

@raelmax
Created December 21, 2012 13:41
Show Gist options
  • Save raelmax/4352914 to your computer and use it in GitHub Desktop.
Save raelmax/4352914 to your computer and use it in GitHub Desktop.
>>> class XYZ(object):
... def __init__(self):
... print 'Output!'
...
>>> kls = 'XYZ'
>>> inst = locals()[kls]
>>> inst
<class '__main__.XYZ'>
>>> inst()
Output!
<__main__.XYZ object at 0x9086e4c>
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment