Category: Python

Arithmetic Operators in Python

In all programming languages you will find arithmetic operators. Arithmetic operators are used with numeric values to perform common mathematical operations. In this tutorial I...

How to use comments features in Python

Sometimes you may need to write some comments in your python code which you don’t want to be executed. Like any other programming languages Python...

If…Else Statement in Python

In any programming language conditional (If…Else) statement is very much important and even you can not imagine the programming language without it. Let’s see the...

Data Types in Python

If you want to start coding in any programming language you have to learn the data types of that programming language. Python is very much...

Adding Two Numbers in Python

Python is very easy computer programming language. Today you will learn how to add two numbers in Python. You will also learn hear how to...