python

[python] 클래스를 JSON 문자열 형태로 변환

def toJSON(self):
	return json.dumps(self,default=lambda o:o.__dict__,sort_keys=True,indent=4)

메소드를 하나 만들어주자.