Uppercase Lowercase Conversion in Python Uppercase Lowercase Conversion of Alphabets: The user inputs a string. The user wants to convert uppercase alphabets to lowercase alphabets.... Read More
ARMSTRONG NUMBER CHECK in Python Armstrong Number Check: The Number is known as Armstrong Number if and only if the following condition satisfies. Sum of: ((each digit of the Numb.... Read More
Learn the graph plot in Python using matplotlib and pyplot. GRAPH PLOT in Python GRAPH PLOT: The user first inputs the X-Axis values. Then, he/she inputs the Y-Axis values. The pro.... Read More
Matrix Rotation Clockwise is the rotation of a given matrix in the clockwise direction. Here, in this method, the elements of the matrix are shifted by one place in order to achiev.... Read More
In this post, we will tell you everything about dictionary in python, viz. how to create dictionary, how to add, remove and modify elements in dictionary, etc. Why do we need dicti.... Read More
CLOCKWISE SPIRAL FORM EXTRACTION OF MATRIX ELEMENTS Clockwise Spiral Form can be best described as: Let’s consider a matrix of m x n dimension, where m is the number of rows.... Read More
ARRAY SORTING in Python Array sorting can be of two types: Ascending Order Sorting: The arrangement of elements of the array is from smallest to largest number. Descending Order So.... Read More
In this tutorial, we are going to write a Python program to calculate compound and simple interest using Python program. I hope you have also done the math related to interest when.... Read More