Start a Project

Basic Introduction of Python

Basic Introduction of Python starts from understanding how computers and programming language work. In the literal sense of…

Python installation and ways to run python code:

To run python on your local environment, you must first install python on your computer. Python installation is…

First Python program:

What Is a Program? A program is simply a sequence of instructions written in Python to solve a…

Types of errors in Programming:

Everybody makes mistakes in real life. Similarly, every programmer make mistakes while programming! Mistakes in programming are called…

Data Types in Python:

Before learning about data types in python, let us see what are values. A value is one of…

Variables in Python 3

Before understanding variables in python, we need to understand why they are used. Actually, the main task of…

Operators in Python 3

Operators in python are special symbols used to represent basic operations. For example, arithmetic operations such as addition,…

Python If statement:

Before diving into the world of Python if statement, let us understand conditional statements like if statement are…

Indentation and blocks in Python:

In the above, program, you must have noticed indention before print statement when it is written after the…

If-else Statement in python

If-else statement is similar to if statement, only difference is that an else block is added to it.…