标签: python python-3.x
例如:
def hello(name: str) -> str: return 'Hello there, {}!'.format(name)
正如PEP所说:
虽然这些注释在运行时可以通常使用 __annotations__属性,在运行时没有进行类型检查。相反,该提案假设存在单独的离线 用户可以自动运行源代码的类型检查器。
__annotations__
由于在运行时没有类型检查,它是否使程序比没有类型提示的Python程序更快?