... n: int) -> int: p = 1 for i in range(n): p *= x return p When we run mypy, we will see complaints about this code. The expected type of the callable ...
確定! 回上一頁