Type Hints是否提高了Python的性能?

时间:2018-06-13 12:17:03

标签: python python-3.x

例如:

def hello(name: str) -> str:
    return 'Hello there, {}!'.format(name)

正如PEP所说:

  

虽然这些注释在运行时可以通常使用   __annotations__属性,在运行时没有进行类型检查。相反,该提案假设存在单独的离线   用户可以自动运行源代码的类型检查器。

由于在运行时没有类型检查,它是否使程序比没有类型提示的Python程序更快?

0 个答案:

没有答案