找不到确定的答案。我想为一个函数进行类型提示,类型是我定义的一个自定义类,称之为CustomClass()。
CustomClass()
然后假设在某个函数中,称之为FuncA(arg),我有一个名为arg的参数。正确的类型提示FuncA的方式是哪种:
FuncA(arg)
arg
FuncA
def FuncA(arg: CustomClass):
还是:
from typing import Type def FuncA(Arg:Type[CustomClass]):
用户名或电子邮箱地址
密码