from collections import Counter def do_find_duplicates(x): x =input("Enter a word = ") for key,val in Counter(x).items(): print(key,val)