Boost Your Python Skills with Type Annotations: A Beginner's Guide
A step-by-step guide to using type annotations in Python
Published in
7 min readJan 6
--
We have all been using Python without specifying types of variables. For example, we would set a variable as a=10
and not int a =10
. In more technical jargon, we call this as Python being a dynamically typed language, meaning that the variable type is…