Type checking in Python
Aug 8, 2021 · 3 min read · 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 >>...
Join discussion