I have the following list;
['html', 'header', 'title', 'body', 'div', 'div', 'div', 'div', 'div', 'ul', 'li', 'li', 'li']
i want to print items having occurrence three or more.
output should be 'li'
and 'div'
Can anyone help me python code to do this.