gpt4 book ai didi

python - 如何在 Python 3.5 中键入提示属性?

转载 作者:太空狗 更新时间:2023-10-29 21:28:14 26 4
gpt4 key购买 nike

我有一个类,我希望属性的初始值为 None:

class SomeClass:
def __init__(self):
self.some_attribute = None

如何添加类型提示,以便 IDE 理解 some_attribute 通常是 AnotherClass 类型?

最佳答案

在 Python 3.5 中,你必须编写

self.some_attribute = None  # type: AnotherClass

自 Python 3.6 起,为变量添加了新的类型提示语法 (PEP 526):

self.some_attribute: AnotherClass = None

这可能会让每个类型检查系统都提示,因为 None 实际上不是 AnotherClass 的实例。相反,您可以使用 typing.Union[None, AnotherClass] , 或速记:

from typing import Optional
...
self.some_attribute: Optional[AnotherClass] = None

关于python - 如何在 Python 3.5 中键入提示属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40173982/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com