Let's say I have a list
List = ['Antonia', 'Sara', 'Nick', 'Deppy', 'Antonia', 'Deppy', 'Antonia']
And I want to count all of them
Nick: 1
Sara: 1
Deppy: 2
Antonia: 3
Is there a way to make a new list which they are ordered like this:
New_List = ['Antonia', 'Deppy', 'Sara', 'Nick']
?