Articles in this series
Programming often involves examining a set of conditions and deciding which action to take based on those conditions. Python’s if statement allows you...
Variables Variables are containers for storing data values. Python has no command for declaring a variable. A variable is created the moment you first...
In this article we will prepare our environment to be ready to run our Python code. We will install python in our laptop and will use a text editor...
Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English...