Type checking in Python
1. Introduction
Python is a dynamically typed language, which is also known as "Duck Typing". This means that when we declare a variable, we don't need to explicitly declare its type. Instead, the interpreter is gonna type it for us:
>>> value = 1
>>...
paulavieira.hashnode.dev3 min read