I was wondering if python could be used statically typed, or if I could use any type-checking at least. Is there a port of python that's statically typed like TypeScript?
- For static type checking, I use Pyright. It's bundled with VS Code's Python extension.<p>- When I need runtime type checking, I use Pydantic.