Suppose I've a list here:
list = ['cat', 'dog', 'wolf', 'cat', 'wolf', 'cat', 'sheep', 'sheep']
I want to fetch only those words from which are having common frequency greater than 1.
Resultant list should be:
['cat', 'wolf', 'sheep']
Can anyone help me with this?