Skip to content
assaf edited this page Oct 1, 2018 · 1 revision

Python is a strongly-dynamically typed language!

Strongly typed - every object has a definite type!

Dynamically typed - there's no type checking of your code prior to running it.

  • In a statically-typed language like C++ / Java - the compiler does a lot of type checking for you.
  • In python you can also extend the program by adding new code, extend objects and definitions and modify the type system.

Clone this wiki locally