Python program to find all non repeating characters in the string

python program to Find All Non Repeating Characters In The String

In this tutorial, we will learn writing the python program to print all characters of the string which are not repeating. We can say the character are available only one time in string. Problem Statement Take any string as an input from the user and check if any character in the string is repeating or … Read more

Replace string space with given character in Python

Replace string space with given character

In this tutorial we are going to learn writing python program to replace the string space with given character. Problem Statement For a given string we have to replace all the spaces with the character given by the user as an input. For example: Our logic to replace a string with given character Algorithm to … Read more

Python program to check given character is vowel or consonant

Check Given Character Is Vowel Or Consonant in python

In this tutorial we are going to learn writing python program to check given character is a vowel ( a, e, i, o, u) or any other alphabet other than vowels(consonant) . Problem statement For any input character, we have to check whether a character is a vowel or consonant. For example: Our logic to … Read more

Python program to find sum of integers present in the string

python program to Find Sum Of Integers Present In The String

In this tutorial, we will learn writing the python program to find the sum of integers which is present in the given strings. First we will iterate and check the available character is string or not? if digit the perform addition. Problem Statement Take any string as an input from the user. Now check for … Read more

Python program to find h.c.f. of two numbers using recursion

python program to Find H.C.F. Of Two Numbers Using Recursion

In this tutorial, we are going to learn writing python program to calculate the Highest Common Factor of two numbers. We will use recursion to calculate the HCF Problem Statement For any two numbers that are inputs given by the user, we have to calculate and print the h.c.f. of that numbers.  For example: Our … Read more

Python program to find h.c.f. of two numbers using iteration

python program to Find H.C.F. Of Two Numbers Using Iteration

In this tutorial, we are going to learn writing a python program to calculate the Highest Common Factor of two numbers. In this program we will use iteration concept. Problem Statement For any two numbers that are inputs given by the user, we have to calculate and print the h.c.f. of that numbers.  For example: … Read more

Python program to sort string character in ascending order

python program to Sort String Character In Ascending Order

In this tutorial, we will learn writing the python program to sort all the characters of the string in ascending order. Problem Statement We have to take a string from the users as an input. And we have to write program in python which will take input and return the string with sorted characters. For … Read more

Python program to sort string in descending order

python program to Sort String In Descending Order

In this tutorial, we will learn writing the python program to sort all the characters of the string in descending order. Problem Statement For the given string as an input by the user, we have to print the characters of the string in descending order. For example: Python program to sort string in descending order … Read more

Python program to remove duplicates from string(no order intact)

Python program to remove duplicates from string(no order intact)

In this tutorial, we will learn writing python program to remove the duplicate characters from the given string. Problem Statement We have to take a string as an input from the user to check for duplicate characters. If there is any duplicity of characters found in string then remove it. For example: Our logic to … Read more

Python program to concatenate String using join() method

python program to Concatenate String Using Join() Method

In this tutorial, we are going to learn writing a python program to concatenate two strings using python inbuilt join() method. 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 … Read more