programming-examples/python/Dictionary/Python program to get a dictionary from an object's fields.py
2019-11-15 12:59:38 +01:00

9 lines
227 B
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__)