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__)

  

原文地址:https://www.cnblogs.com/sea-stream/p/9981594.html