Skip to content

Instantly share code, notes, and snippets.

@hymkor
Last active August 29, 2015 14:06
Show Gist options
  • Save hymkor/d6547f379014f2b7938b to your computer and use it in GitHub Desktop.
Save hymkor/d6547f379014f2b7938b to your computer and use it in GitHub Desktop.
Python で、超タイニー構造体 ref: http://qiita.com/zetamatta/items/69049d560a0bb949d78e
<MARKEDONE:~>
✏ ipy struct.py
10 20 <30>
<MARKEDONE:~>
class Struct(object):
def __init__(self,**kargs):
for key,val in kargs.iteritems():
setattr(self,key,val)
if __name__ == '__main__':
t = Struct(a=10,b=20,c=30)
t.c = "<30>"
print t.a, t.b, t.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment