by Shahinur | Jun 15, 2019 | Python
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,...
by Shahinur | Jun 10, 2019 | 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...
by Shahinur | May 31, 2019 | Python
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...
by Shahinur | May 25, 2019 | Python
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...
by Shahinur | May 3, 2019 | Python
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...
by Shahinur | Apr 25, 2019 | 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...
Recent Comments