Posts from Python

Uppercase Lowercase Conversion of an Input String in Python3

By Priyam Sur

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 of a given number in input using Python3

By Priyam Sur

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

Graph Plot of X and Y-Axis for given values as input in Python3

By Priyam Sur

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 by shifting one element at a time in Python 3

By Priyam Sur

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

Creation, Addition, Removal and Modification of Dictionary in Python

By Neha Mishra

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

How to Extract Matrix Elements in the Spiral Form in Python3?

By Priyam Sur

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: How to sort an array of integers in Python3?

By Priyam Sur

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

Compound and Simple Interest Calculation using Python

By Priyam Sur

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

Related Posts