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