w3resource

Python Exercise: Find the most common elements and their counts of a specified text

Python Collections: Exercise-2 with Solution

Write a Python program to find the most common elements and their counts of a specified text.

Sample Solution:

Python Code:

from collections import Counter
s ='lkseropewdssafsdfafkpwe'
print("Original string: "+s)
print("Most common three characters of the said string:")
print(Counter(s).most_common(3))

Sample Output:

Original string: lkseropewdssafsdfafkpwe
Most common three characters of the said string:
[('s', 4), ('e', 3), ('f', 3)] 

Flowchart:

Python Collections: Find the most common elements and their counts of a specified text.

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program that iterate over elements repeating each as many times as its count.
Next: Write a Python program to create a new deque with three items and iterate over the deque's elements.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Returns the most frequent element in a list

Example:

def tips_most_frequent(list):
    return max(set(list), key=list.count)
print(tips_most_frequent([1, 2, 1, 2, 3, 2, 1, 4, 2]))

Output:

2