【发布时间】:2015-08-10 21:25:12
【问题描述】:
有没有办法让包含type hinting annotations 的python 3 代码也可以与python 2 一起使用?
def get(axyz: list, window_size: int=WINDOW_SIZE) -> numpy.array:
return numpy.array(axyz)
更重要的是,这可能吗?
【问题讨论】:
标签: python python-2.7 python-3.x type-hinting