18 lines
224 B
Python
18 lines
224 B
Python
|
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()
|