Functional Python Programming 2e -- Type Hints!
You might want to look into this: Functional Python Programming - Second Edition.
Let's talk about the type hints, shall we?
Most of the examples have had type hints added. This means running everything through mypy. And it also means running everything through doctest, as well.
More important than the technical …
more ...