首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python 字典的扩充变形

2013-10-29 
python 字典的扩展变形class AttrDict(dict):http://stackoverflow.com/questions/4984647/\accessing-

python 字典的扩展变形

class AttrDict(dict):    """    http://stackoverflow.com/questions/4984647/\    accessing-dict-keys-like-an-attribute-in-python    http://bugs.python.org/issue1469629    """    def __init__(self, source):        super(AttrDict, self).__init__(source)     def __getattr__(self, key):        return self[key]     def __setattr__(self, key, value):        self[key] = value

热点排行