Sort the dictionary of Python

Source: Internet
Author: User

The dictionary keys/sorted by value, returned in the form of a tuple list, and using a lambda function;

Sorted (iterable[, cmp[, key[, reverse]]

Iterable: is an iterative type;
CMP: A function For comparison, comparing what is determined by key, having a default value, iterating over an item in the set;
Key: A property and function of a list element as a keyword, with a default value, an item in the iteration set;
Reverse: Sorting rules. Reverse = True or reverse = False, with a default value.
Return value: Is a sorted, iterative type, as with iterable.

Such as:
>>> d={"OK": 1, "No": 2}
Sort the dictionary keys and return them in the form of a tuple list
>>> Sorted (D.items (), Key=lambda d:d[0])
[(' No ', 2), (' OK ', 1)]
Sorts dictionaries by value and returns them as a tuple list
>>> Sorted (D.items (), Key=lambda d:d[1],reverse=true)
[(' No ', 2), (' OK ', 1)]

Sort the dictionary of Python

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.