Skip to content

Instantly share code, notes, and snippets.

@yunho0130
Created December 18, 2016 13:53
Show Gist options
  • Save yunho0130/0ab0fcefa703d3892923e38406a951d0 to your computer and use it in GitHub Desktop.
Save yunho0130/0ab0fcefa703d3892923e38406a951d0 to your computer and use it in GitHub Desktop.
# Reflection Example
class MyClass:
def Hello(self, sText):
return 'Hello ' + sText
MyClass().Hello('Peter')
getattr(globals()['MyClass'](), 'Hello')('Peter')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment