I have a dict that looks like this
{ "keyword1":3 , "keyword2":1 , "keyword3":5 , "keyword4":2 }
And I would like to convert it DESC and create a list of just the keywords. Eg, this would return
["keyword3" , "keyword1" , "keyword4" , "keyword2"]
All examples I found use lambda and I'm not very strong with that. Is there a way I could loop through this, and sort them as I go? Thanks for any suggestions.
PS: I could create the initial dict differently if it would help.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…