Created
July 29, 2019 07:14
-
-
Save Everfighting/61a0681328b9c061f668bd562972b00f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import operator | |
x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0} | |
sorted_x = sorted(x.items(), key=operator.itemgetter(1)) | |
import operator | |
x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0} | |
sorted_x = sorted(x.items(), key=operator.itemgetter(0)) | |
x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0} | |
sorted_x = sorted(x.items(), key=lambda kv: kv[1]) | |
import collections | |
sorted_dict = collections.OrderedDict(sorted_x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment