Python program to concatenate two string

python program to Concatenate Two String

In this tutorial, we are going to learn writing a python program to concatenate two strings. Problem Statement For two input strings that are given by the user, we need to join them together and return the final string as an output. For example: Our logic to concatenate two string Algorithm to concatenate two string … Read more

Python program to print maximum occurred character in the string

Python program to print maximum occurred character in the string

In this tutorial, we will learn writing the python program to print the character which has occurred the most in given string. Problem Statement For any input string, we have to check the number of occurrences of each character and print the character with the maximum number of occurrences. For example: Our logic to print … Read more

Python program to print even numbers from array (list)

python program to Print Even Numbers From Array (List)

In this tutorial, we will learn writing python program to create an array (list in case of python) and print the all even numbers stored in the array (list). Problem Statement Our Problem statement is like, We have to write an program that will first take the input of array (list) size and then the … Read more

Python program to find the sum of array (list) elements

python program to Find The Sum Of Array (List) Elements

In this tutorial, we will learn writing python program to create an array (list in case of python) and calculate the sum of elements stored in the array (list). Problem Statement Our problem statement is like, our program should take the array size from the user and then the elements of the array (list). After … Read more

Python Program to Insert element at given location in array(list)

python program to Insert Element At Given Location In Array(List)

In this tutorial, we will learn writing the python program to insert an element at the given position of an array (list in case of python) and print the array (list). Problem Statement Our problem statement is, for a given array(list) we have to add an element at the given position (index). For example: Our … Read more

Python program to insert an element at end in the array(list)

python program to Insert An Element At End In The Array(List)

In this tutorial, we will learn writing the python program to insert an element at the end of an array (list in case of python) and print the array (list) after insertion as output. Problem Statement Our problem statement is we have to add an element given by the user, at the end of the … Read more

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