This is the format of nested list:
[['A', 0],['B', 0], ['V', 0], ['D', 0], ['E', 0], ['F', 0], ['G', 1], ['H', 1], ['I', 1], ['J', 3], ['K', 0]]
I have nested list in such format, I need to get top 3 nested lists which have max nested list integer value such as my result should be ['J', 3] , ['I', 1] , ['H', 1] I have tried to use the nested loop where i can get the max integer but struck at getting the string of those max 3 integers
Can someone please help me out here