Table of Multiplication for Two

In this program how to print Table of Two and in different types of loops first we use for loop for printing the Table of Two : Input : Table of Two : 2 Output : 2 * 1 :  2 2 * 2 :  4 2 * 3 :  6 2 * 4 :  … Read more

Bubble Sort in Python / Python Pragram

First we understand what is sorting  : Ordering data in an increasing or decreasing manner is called sorting Now we understand Bubble Sort : Bubble sort is a simple sorting algorithm that repeatedly steps through a list , compares  adjacent  elements and swaps them if they are in the wrong order The algorithm gets its … Read more

%d bloggers like this: