Type Hints

Annotations, Optional and Union, generics, type aliases, TypedDict, Protocol and static checking.

2 notes

Notes

Python

Type Hints: The Basics

Annotations describe what a function expects and returns. Python does not enforce them, and that is the point: they are documentation a tool can check...

Read more