Created
March 30, 2017 09:43
-
-
Save allieus/b43a0ebb23d12d84e7c18f7dcb7cbedf 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
mylist = [10, 11, 9, 20, 12, 313, 211, 121] | |
def sort_fn(value): | |
return (len(str(value)), value%10) | |
mylist.sort(key=sort_fn) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment