我写了一个程序,其中有一段是这样的:
class Detector(Enum):
BBO = "BBO"
DECIGO = "DECIGO"
@property
def ell_max(self) -> int:
ell_max = {
Detector.BBO: 30,
Detector.DECIGO: 30,
}
return ell_max[self]
我现在需要在一个循环中改变 ell_max 的值,也就是不设置为 30 了,而是设置成其他值。我尝试过定义一个 def set_ell_max(self, ell_max) 但最终失败了。我的失败品如下:
class Detector(Enum):
BBO = "BBO"
DECIGO = "DECIGO"
_ell_max_values = {
DECIGO: 30,
BBO: 30,
}
@property
def ell_max(self) -> int:
return self._ell_max_values[self]
def set_ell_max(self, value: int):
self._ell_max_values[self] = value
这种情况下,当我使用 Detector.BBO.ell_max 的时候,会提示 ```TypeError: 'Detector' object is not subscriptable
请问各位大哥,我该怎么处理呀?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.