while loop in python

while loop in python

While loop is a popular looping construct in Python. Just like the for loop, the while loop is used to repeat an action any given number of times. Unlike the for loop, the while loop continues to loop until the…

for loop in python

for loop in python

For loop in Python is the most widely used looping construct and in this post, you will learn how to use the for loop in solving real-life problems.

Control statements in python

control statements in python

Control statements, also known as control structures are important building blocks in programming, and in this tutorial will learn how to use them for problem-solving in Python.

Numerical data types in Python

numerical data types

In this article, we will be learning how to work with numerical data types in Python. Like every other programming language, python provides support for working with different types of numerical data types including integers, floats and complex numbers. Numerical…