Annotations and Type Checking in Python
Python is a dynamically typed programming language. This means that type checking is done at run-time. PEP 484 introduced type hints, which makes it possible to add type hints to variables and function signatures. In this article, we will be looking ...
Oct 20, 20213 min read466