Answers for "create a dictionary of object in Python class"

3

python convert object into ditct

class A():
  def __init__(self):
    self.a = 1
    self.b = 2
    
a = A()
aDict = vars(a)
Posted by: Guest on June-02-2020

Code answers related to "create a dictionary of object in Python class"

Python Answers by Framework

Browse Popular Code Answers by Language