Python 3.5+ type annotations
# Python 3.5+ supports 'type annotations' that can b
# used with tools like Mypy to write statically typed Python:
def calculate(a: int, b: int) -> int:
return a + b
int: return a + b">
# Python 3.5+ supports 'type annotations' that can b
# used with tools like Mypy to write statically typed Python:
def calculate(a: int, b: int) -> int:
return a + b