MemotivaPython language fundamentals

What does it mean that Python is dynamically typed?

Python language fundamentals

Audio flashcard · 0:14

Nortren·

What does it mean that Python is dynamically typed?

0:14

Dynamically typed means that variable types are checked at runtime, not at compile time. A variable is just a name bound to an object, and the same name can be rebound to objects of different types during execution. Type errors are raised only when the offending code actually runs.
docs.python.org