Python Type Hints — a practical guide to Python type hints with clear examples you can reuse in real projects.
Python Tutorial Series (56/95). Prefer one article? Read the complete Python tutorial.
Short description
Type hints do not enforce types at runtime by default, but help editors, mypy, and readers.
Type hints
def area(width: float, height: float) -> float:
return width * height
names: list[str] = ['Asha', 'Ravi']
print(area(3.0, 4.0), names)