Appearance
根据字典的value排序
from usepy import sort_by_value
original_dict
az
>>> sort_by_value({'c': 1, 'b': 2, 'a': 3}) {'c': 1, 'b': 2, 'a': 3}