from operator import itemgetter
temp_list = []
temp_dict = dict()
temp_dict["status"] = 1
temp_list.append(temp_dict)
temp_dict = dict()
temp_dict["status"] = 10
temp_list.append(temp_dict)
sorted(temp_list, key=itemgetter('status'), reverse=True)
'app > python' 카테고리의 다른 글
gensim을 설치여정 (ubuntu 14.04) (0) | 2016.04.05 |
---|---|
JetBrains edit font size control (0) | 2014.10.23 |
python 오늘의 요일 구하기 (0) | 2014.10.16 |
python regex special symbol identification example (0) | 2014.10.13 |
python warning pep8 closing bracket does not match visual indentation (0) | 2014.09.16 |