dict(
    sorted(
        dict_counts.items(),
        key= lambda x:x[1],
        reverse = False
    )
)

根据键值对字典排序

并转化为字典

https://www.freecodecamp.org/chinese/news/sort-dictionary-by-value-in-python/