October 2025
Intermediate to advanced
283 pages
7h 2m
English
Let us now review the basics of the Python programming language. Python is an interpreted language, which means it does not need to be compiled and can run code interactively. It is also dynamically typed – the type of the value is determined at runtime. For example, if we define x=5, then the data type for x will be inferred as integer. But if we change it to x="abc", then the type will be dynamically changed to string. In addition, Python supports programming several paradigms such as procedural, object-oriented, and functional programming. In procedural programming, the code is written with a sequential logic, and it will be executed orderly. Object-oriented programming is to encapsulate ...
Read now
Unlock full access