Since Python 3.5 you have the possibility to add type hints so that type checks can be performed _before_ run time: def multiply(a: int, b: int) -> int: ...
確定! 回上一頁