python 将类属性转为字典

 

class dictObj(object):  
     def __init__(self):  
         self.x = 'red'  
         self.y = 'Yellow'  
         self.z = 'Green'  
     def do_nothing(self):  
         pass  
test = dictObj()  
print(test.__dict__)

  

posted @ 2018-11-19 10:04  anobscureretreat  阅读(3252)  评论(0编辑  收藏  举报