Skip to content

Instantly share code, notes, and snippets.

@lxneng
Created October 20, 2011 03:17
Show Gist options
  • Save lxneng/1300335 to your computer and use it in GitHub Desktop.
Save lxneng/1300335 to your computer and use it in GitHub Desktop.
>>> class Foo(object):
... def bar(self):
... print 'hello'
...
...
...
>>> class_name = 'Foo'
>>> globals()[class_name]
<class '__main__.Foo'>
>>> _()
<__main__.Foo object at 0x10daa28d0>
>>> _.bar()
hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment