In this program, we will take a string as input and create a string that consists of multi-time occurring characters in the said string.
Steps to solve the problem
- Take a string as input.
- From collections import counter to count the occurrences of the characters in the given string.
- Print only those characters who have occurred more than once.
Output :