标签: python visual-studio-code
我想在一些地方使用类型提示。此语法适用于VS代码,但与2.7:
props
据我所知,以下是使用提示的建议方法,但VS代码无法识别它:
def foo(a: str, b: int) -> str: pass
以下作品,虽然我不想这样做:
def foo(a, b): # type: (str, int) -> str pass
有更好的方法吗?