import json class hi: PLOP = "hello" PPPP = "ghjk" def __init__(self): self.bl = "zrfcv" def prin(self) : return json.dumps(self.__dict__) def f() : d = hi() print(d.prin()) f()