Your Ad Here

Posted By

mscbaron on 02/22/10


Tagged

Python-Class


Versions (?)

Dynamic Class


 / Published in: Python
 

  1. class DynVars:
  2. def __init__(self, varlist):
  3. for i in varlist:
  4. self.__dict__[i] = ''
  5. self.varlist = varlist
  6.  

Report this snippet  

You need to login to post a comment.