Python program to print length of an array(list)

print length of an array(list)

In this tutorial, we will learn writing the python program to create an array (list in case of python) and print the length (number of elements stored) in the array (list). Problem Statement For the given array, our program should return the length of the array as an output. For example: Our logic to print … Read more

Reverse an array(list) using while loop Python

python program to Print An Array(List) In Reverse Order

In this tutorial, we will learn writing python program to create an array (list in case of python) and return the reverse of elements stored in the array (list). Problem Statement Our program will first take the input of array (list) size and then the elements of the array (list) by the user. After applying … Read more

Python program to print an array(list) in reverse order

print an array(list) in reverse order

In this tutorial we will learn writing program in python to create an array (list in case of python) and return the reverse of elements stored in the array (list). Problem Statement Our program will first take the input of array (list) size and then the elements of the array (list). And return the reverse … Read more

Python program to calculate simple interest

Calculate Simple Interest in python

In this tutorial, we are going to learn writing the python program to calculate the simple interest from given principal, rate of interest, and time. Problem Statement For the inputs given by the user, calculate the simple interest. For example: Our logic to calculate simple interest Algorithm to calculate simple interest Python code to calculate … Read more

Python program to convert Fahrenheit into Celsius

python program to Convert Fahrenheit Into Celsius

In this tutorial, we are going to learn writing python program to convert given temperature Fahrenheit into Celsius. Problem Statement For any given temperature input by the user in Fahrenheit , we have to convert the temperature into Celsius. For example: Our Logic to convert fahrenheit into celsius Algorithm to convert Fahrenheit into Celsius Python … Read more

Python Program to find l.c.m. of two numbers

python program to Find L.C.M. Of Two Numbers

In this tutorial, we are going to learn writing the python program to calculate the least common multiple of two numbers. Problem Statement For any two numbers given by the user as an input, we have to calculate and print the l.c.m. of that numbers using python programming language.  For example: Our logic to find … Read more

Python program to Count alphabets, digits, special char in string

python program to Count Alphabets, Digits, Special Char In String

In this tutorial, we are going to learn python program to count the number of alphabets, digits, and special characters present in an input string from the user. Problem Statement For any input string, we are going to print the number of alphabets (‘a’-‘z’ and ‘A’-‘Z’), the number of digits(0-9), and the number of special … Read more

Python program to remove spaces from string without inbuilt function

remove spaces from string without inbuilt function

In this tutorial, we are going to learn writing a python program to remove all the blank spaces present between the string given by the user. In this program we are not going to use any python inbuilt functions like isalpha(). Problem Statement For any input string, we have to check for the blank space … Read more

Remove the blank spaces from string using isalpha() in Python

Python program to remove all the blank spaces in a given string using isaplha()

In this tutorial, we are going to learn writing the python program to remove all the blank spaces from the string given by the user using the isalpha() python method Problem Statement For any input string, we have to check for the blank space and then remove it. For example: Our logic to remove all … Read more

Python Program to check two strings are equal or not

Python program to check if two strings are the same(case sensitivity)

In this tutorial, we are going to learn writing a python program to check if two given strings given input by the user are the same or not. When working with text in Python, a common task is checking if two strings are the same. This means seeing if the characters in one string are … Read more