from collections import Counter
def get_mst_freq_item(list_data):
x1 = dict(Counter(list_data))
dic1SortList = sorted(x1.items(),key = lambda x:x[1],reverse = True)
print (dic1SortList)
return dic1SortList[0][0]
from collections import Counter
def get_mst_freq_item(list_data):
x1 = dict(Counter(list_data))
dic1SortList = sorted(x1.items(),key = lambda x:x[1],reverse = True)
print (dic1SortList)
return dic1SortList[0][0]