Skip to content

Instantly share code, notes, and snippets.

@anitaokoh
Created March 30, 2019 14:38
Show Gist options
  • Save anitaokoh/1a78967589f23fd38411a6e0fadc5532 to your computer and use it in GitHub Desktop.
Save anitaokoh/1a78967589f23fd38411a6e0fadc5532 to your computer and use it in GitHub Desktop.
# To sort the value of the words in descending order
sort_dict = sorted(word_dict.items(),key = lambda t: t[1], reverse =True)
print(sort_dict)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment