Posts by Amruth Kumar

Author Biographical Info: Not available

Find Frequency of each element in an unsorted array in Python

By Amruth Kumar

In this tutorial, we are going to learn how to find the frequency of each element in an unsorted array in Python. For finding frequencies dictionaries can be used. You can check: .... Read More

Python program to Sort elements by frequency

By Amruth Kumar

In this tutorial, we are going to sort elements in a list by their frequencies. To do this problem we have to first find the frequencies of elements. We can use dictionaries for fi.... Read More

Python Program to replace a word with asterisks in a sentence

By Amruth Kumar

In this tutorial, we are going to learn how to replace a word in a word with asterisks in a sentence using Python. Replacing a word with asterisks in a string This program is very .... Read More

Related Posts