Mình có một dict sau:
a= {"focus": 1, "on": 2, "solving": 1, "problems": 1, "rather": 1, "than": 1, "focusing": 1, "syntax": 1}
Làm sao mình có thể sắp xếp dict sau theo thứ tự giảm dần value cùa nó. Nếu 2 key có values bằng nhau thì sắp xếp theo thứ tự alphabet ạ. Mình làm được phần sắp xếp theo thứ tự giảm dần của values rồi nhưng phần sau thì mình không biết làm. Xin cảm ơn.
a= {"focus": 1, "on": 2, "solving": 1, "problems": 1, "rather": 1, "than": 1,
"focusing": 1, "syntax": 1}
sorted_wordList = {}
sortedValue = sorted(a.values(), reverse=True)
for sortedKey in sortedValue:
for key, value in a.items():
if value == sortedKey:
sorted_wordList[key] = value