Python dict keys and values sorting

Source: Internet
Author: User

The Python Dictionary (dict) is characterized by an unordered character that extracts the value (value) by key, which can be done in the following way if we need a dictionary sorted by value:

1 The following is the order of value from large to small.

DIC = {' A ': +, ' BC ': 5, ' C ': 3, ' ASD ': 4, ' AA ': $, ' d ': 0}
dict= Sorted (Dic.iteritems (), Key=lambda d:d[1], reverse = True)
Print Dict

Results of the output:
[(' AA ', ","), (' a ', +), (' BC ', 5), (' ASD ', 4), (' C ', 3), (' d ', 0)]

Now let's break down the code.
Dic.iteritems () Gets a list of [(Keys, values)].
Then, using the sorted method, the key parameter specifies that the sort is sorted by value, that is, the first element, D[1]. Reverse = True indicates that it needs to be flipped, the default is small to large, flip the words, that is, from large to small.

2 Sort the dictionary key (key):
DIC = {' A ': +, ' BC ': 5, ' C ': 3, ' ASD ': 4, ' AA ': $, ' d ': 0}
dict= Sorted (Dic.iteritems (), Key=lambda d:d[0]) d[0] represents the key of the dictionary
Print Dict

Python dict keys and values sorting

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.