How Python Works

How Python Works

In the previous part, we saw a very simple Hello World program. We saw that whatever is written inside the print() function is shown as the output. But how does it work? We will discuss this in detail in this part. From running a program to displaying the output,...
“Hello World” in Python

“Hello World” in Python

Programmers usually start writing their first program with “Hello World”. We will also start with “Hello World” here. However, to run your first Python program, you must have Python installed and the environment set up. Otherwise, if there are...
Python Environment Setup

Python Environment Setup

Command Line Interface (CLI) To use the command line interface, we first need to install Python’s core package. This varies for different operating systems. Windows First, download the latest version 3 of Python from this link. Once downloaded, double-click on...
Python Interpreter

Python Interpreter

You might already know that machines or computers always operate in machine language, meaning that regardless of the language we use, it must be translated into a form comprehensible to the computer; this task is performed by an interpreter or a compiler. An...
Which version of Python should I use?

Which version of Python should I use?

Python has two major versions, which are updated separately. These versions are Python 2 and Python 3. Common Python users often find themselves in doubt about these versions. In continuation and considering new users, a brief discussion is presented here. Both...
Technical advantage of Python

Technical advantage of Python

In previous posts, we have seen some general discussion of Python. But a beginner, programmer or developer can naturally ask the question that is Python technically sound? In this blog post, we will discuss about this – Object Oriented Python supports three...