标签: python python-2.7 python-3.x type-hinting
有没有办法让包含type hinting annotations的python 3代码也可以使用python 2?
def get(axyz: list, window_size: int=WINDOW_SIZE) -> numpy.array: return numpy.array(axyz)
更重要的是,甚至可能吗?
答案 0 :(得分:0)
类型注释语法在python2中无效。 pep484提到了存根文件以与python2兼容。