Skip to content

Instantly share code, notes, and snippets.

@lichengwu
Created June 22, 2015 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lichengwu/356b0ed48d64e57f8489 to your computer and use it in GitHub Desktop.
Save lichengwu/356b0ed48d64e57f8489 to your computer and use it in GitHub Desktop.
轻量级Python对象,更少内存占用
LightObject = namedtuple('LightObject', ['shortname', 'otherprop'])
n = LightObject(shortname='something', otherprop='something else')
n.shortname # something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment