Skip to content

Instantly share code, notes, and snippets.

@theodox
Last active August 29, 2015 13:56
Show Gist options
  • Save theodox/9105967 to your computer and use it in GitHub Desktop.
Save theodox/9105967 to your computer and use it in GitHub Desktop.
def constructor(self, name):
self.Name = name
example = type('Example', (), {'__init__':constructor } )
Test = example("Hello world")
# <__main__.Example object at 0x00000000022D6198>
Test.Name
# Hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment