I have a dictionary that looks like this.
    CV    Scores
0    2  0.966667
1    3  0.979984
2    4  0.979701
3    5  0.980000
4    6  0.979938
5    7  0.973639
6    8  0.973214
7    9  0.986420
8   10  0.973333
9   11  0.974242
10  12  0.973611
11  13  0.974359
12  14  0.974206
I want to extract the CV value for the largest Score value.
So, in this case, the largest Score value is 0.986 and I want to print the CV value of 9.
Please help.
 
     
    