Skip to content
Permalink
69c26b67fb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
12 lines (6 sloc) 499 Bytes
def TopPersonalArt(Artist):
from collections import Counter #imports module collections.counter
ArtistList=["Rihanna","Drake","Drake","DJ","Blue","Rihanna","DJ","Drake","George","George","Andreas"] #List which searches will be added
ArtistList.append(Artist) #adding artist name based on search to the list
c=Counter(ArtistList) #making the list a counter to count elements in list
return str(c.most_common(5)) #sorts elements and give most 5 commons