I need to sort a dict, where keys are fractions represented by strings and need to be sorted by its numerical values:
i.e.:
exp_time = {"2":10, "1/2":5:, "2.5":11, "1/200":9, "15":3, "1/30":6}
result should be like this(descending order):
15
2.5
2
1/2
1/30
1/200