September 2019
Intermediate to advanced
420 pages
10h 29m
English
You might already know that Python is a weakly typed language. This means that you do not have to specify a data type whenever you create a new variable. For example, the following will automatically be represented as an integer:
In [5]: a = 5
You can double-check this by typing the following:
In [6]: type(a)Out[6]: int
Read now
Unlock full access