Lecture #2 Python Data Type and Variables data data type ...

unlike other language, Python does not require the programmer to specify the data type when creating a variable. Python interpreter will automatically regulate the data type of a variable according to the value it is assigned to host. In the following, the variable x is set to be “int” type first, then “str” and “tuple” accordingly. ................
................