python字典转对象
class DictToStruct: def __init__(self, **entries): self.__dict__.update(entries) struct = DictToStruct(**temp)
当前题目:python字典转对象
链接分享:http://www.mywzjz.com/article/ppiico.html
class DictToStruct: def __init__(self, **entries): self.__dict__.update(entries) struct = DictToStruct(**temp)