python字典转对象

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

名称栏目:python字典转对象
本文路径:http://scyanting.com/article/ppiico.html