from typing import Any def print_anything(*args: Any): print(*args) ... 型別檢查器(type checker)幫助我們偵測誤用/錯用型別的情況,例如mypy 。
確定! 回上一頁