python使用点操作符访问字典(dict)数据的方法
本文实例讲述了python使用点操作符访问字典(dict)数据的方法。分享给大家供大家参考。具体分析如下:
平时访问字典使用类似于:dict['name']的方式,如果能通过dict.name的方式访问会更方便,下面的代码自定义了一个类提供了这种方法。
classDottableDict(dict): def__init__(self,*args,**kwargs): dict.__init__(self,*args,**kwargs) self.__dict__=self defallowDotting(self,state=True): ifstate: self.__dict__=self else: self.__dict__=dict() d=DottableDict() d.allowDotting() d.foo='bar' print(d['foo']) #bar print(d.foo) #bar d.allowDotting(state=False) print(d['foo']) #barfromhttps://www.nhooo.com print(d.foo) #AttributeError:'DottableDict'objecthasnoattribute'foo'
希望本文所述对大家的Python程序设计有所帮助。
热门推荐
10 妹妹生日祝福语简短好看
11 毕业写给学校简短祝福语
12 乔迁送茶具简短祝福语
13 跟阿姨再见祝福语简短
14 冬至祝福语简短情话高级
15 酒吧欢迎回家祝福语简短
16 带马的祝福语简短
17 转给爱人红包祝福语简短
18 预祝中秋简短的祝福语