求助:零基础入门学习python第50讲的习题
我想请问下动动手习题我如此写为何报错?class Const:
def __init__(self):
self.cons = {}
def __setattr__(self, name, value):
if name in self.cons:
raise TypeError('常量无法改变!')
if not name.isupper():
raise TypeError('常量名必须由大写字母组成!')
self.cons = value
import sys
sys.modules = Const()
报错的内容为:
Traceback (most recent call last):
File "F:/Python练习/P050/constant.py", line 18, in <module>
sys.modules = Const()
File "F:/Python练习/P050/constant.py", line 4, in __init__
self.cons = {}
File "F:/Python练习/P050/constant.py", line 7, in __setattr__
if name in self.cons:
AttributeError: 'Const' object has no attribute 'cons'
提前感谢!{:10_254:} 本帖最后由 fall_bernana 于 2020-11-5 10:56 编辑
'''
你可以看你的错误。python的错误都是按运行的顺序报的。self.cons = {}后的一步是if name in self.cons:
所以说明当初始化的时候,self.cons ,对象调用cons 就会自动执行__setattr__方法,
然后__setattr__方法里面又是对象调用属性,而这个时候属性并没有建好。
为了避免这个问题需要用下面这种方式实现:
'''
def __init__(self):
object.__setattr__(self,'cons',{}) fall_bernana 发表于 2020-11-5 10:51
'''
你可以看你的错误。python的错误都是按运行的顺序报的。self.cons = {}后的一步是if name in self.con ...
啊,懂了!
非常感谢{:5_108:}
页:
[1]