python字典转对象
class DictToStruct: def __init__(self, **entries): self.__dict__.update(entries) struct = DictToStruct(**temp)
分享标题:python字典转对象
网站地址:http://www.icyeos.com/article/ppiico.html

class DictToStruct: def __init__(self, **entries): self.__dict__.update(entries) struct = DictToStruct(**temp)