^^Dynamically typed language.

Struttura della variabile in memoria

E' a conoscenza del tipo di dato che memorizza.

Cioe' oltre che memorizzare il dato, memorizza in una sottovariabile il tipo di dato.

Funzionalita'

You do not have to specify the data type of a variable when you declare it, and data types are converted automatically as needed during script execution. So, for example, you could define a variable as follows:
 

var answer = 42;

 

And later, you could assign the same variable a string value, for example:

 

answer = "Thanks for all the fish...";

 

and this assignment does not cause an error message.

 

https://eli.thegreenplace.net/2018/type-erasure-and-reification/

Reification
roughly: "taking something abstract and making it real/concrete"

when applied to types means "compile-time types are converted to actual run-time entities"

 

Links

Python variables are pointers to object.