Untitled

                Never    
from collections import Counter

lista = [1,1,1,1,1,2,3,3,3,2,3,3,3,3,3,3]

popular = Counter(elemento for elemento in lista).most_common()

print(popular)

Raw Text