我想在当前的Python 3.5项目中使用类型提示。我的函数应该接收一个函数作为参数。如何在类型提示中指定类型函数?import typingdef my_function(name:typing.AnyStr, func: typing.Function) -> None: # However, typing.Function does not exist. # How can I specify the type function for the parameter `func`? # do some processing pass我检查了PEP 483,但在那里找不到函数类型提示。
2 回答
一只萌萌小番薯
TA贡献1795条经验 获得超7个赞
另一个需要注意的有趣点是,您可以使用内置函数type()来获取内置函数的类型并使用它。所以你可以
def f(my_function: type(abs)) -> int:
return my_function(100)
或那种形式的东西
添加回答
举报
0/150
提交
取消