
Filip Stawicki
14 May 2019, 7 min read

Static typing is an approach to writing code that allows developers to specify the type of variables and return type of functions before the code is actually run.By design, Python is a dynamically typed language and uses duck typing to determine the variable type (If it walks like a duck and it quacks like a duck, then it must be a duck).


