Types without leaving Python
Type hints (List[int], Optional[str]) document intent. Python still runs dynamically — hints are for humans and tools like mypy.
Quirk: Hints are stored in __annotations__ but not enforced at runtime. You can lie to the type checker. Please don't.
Output
Press Run to execute your code.