Example 1:
>>>L = [2,3,1,4]
>>>L.sort()
>>>L
>>>[ 1,2,3,4]
Example 2:
>>>L = [2,3,1,4]
>>>L.sort(reverse=True)
>> >L
>>>[4,3,2,1]
Example 3: Sorting the second keyword
>>>L = [('b',6),(' a',1),('c',3),('d',4)]
>>>L.sort(lambda x,y:cmp(x[1],y[1]) )
>>>L
>>>[('a', 1), ('c', 3), ('d', 4), ('b', 6)]
Example 4: Sort the second keyword
>>>L = [('b',6),('a',1),('c',3),('d',4 )]
>>>L.sort(key=lambda x:x[1])
>>>L
>>>[('a', 1), ('c ', 3), ('d', 4), ('b', 6)]
Example 5: Sorting the second keyword
>>>L = [('b',2), ('a',1),('c',3),('d',4)]
>>>import operator
>>>L.sort(key=operator.itemgetter( 1))
>>>L
>>>[('a', 1), ('b', 2), ('c', 3), ('d', 4) ]
Example 6: (DSU method: Decorate-Sort-Undercorate)
>>>L = [('b',2),('a',1),('c',3),( 'd',4)]
>>>A = [(x[1],i,x) for i,x in enumerate(L)] #i can confirm the stable sort
>>> ;A.sort()
>>>L = [s[2] for s in A]
>>>L
>>>[('a', 1), ( 'b', 2), ('c', 3), ('d', 4)]
The above gives 6 methods for sorting List, among which Example 3.4.5.6 can play a role in sorting List items. A certain item
is sorted for comparison keywords.
Efficiency comparison:
cmp Through experimental comparison, method 3 is slower than method 6, method 6 is slower than method 4, method 4 and method 5 are basically Quite
multi-keyword comparison sorting:
Example 7:
>>>L = [('d',2),('a',4),('b',3),('c' ,2)]
>>> L.sort(key=lambda x:x[1])
>>> L
>>>[('d', 2), ( 'c', 2), ('b', 3), ('a', 4)]
We see that the sorted L at this time is only sorted according to the second keyword,
If we Do you want to use the second keyword to sort and then use the first keyword to sort? There are two methods
Example 8:
>>> L = [('d',2),(' a',4),('b',3),('c',2)]
>>> L.sort(key=lambda x:(x[1],x[0]))
>>> L
>>>[('c', 2), ('d', 2), ('b', 3), ('a', 4)]
Example 9:
>>> L = [('d',2),('a',4),('b',3),('c',2)]
>>> ; L.sort(key=operator.itemgetter(1,0))
>>> L
>>>[('c', 2), ('d', 2), (' b', 3), ('a', 4)]
For simple list sorting, just call the built-in function directly, but for dict list sorting it is not so straightforward, but there are still A very simple method, such as:
>>> ls1 = [{'a' : 1, 'b' : 12}, {'a' : -1, 'b' : 22},{' a' : 12, 'b' : 32},{'a' : 6, 'b' : 42}]
>>> ls1.sort(key=lambda obj:obj.get('a') )
: 42}, {'a': 12, 'b': 32}]
& gt; & gt; & gt;
Python DICT and List Sorting
1, List Sorting List is Python's built -in function, which contains SORT itself Method
Such as:
>>> s=[2,1,3,0]
>>> s.sort()
[0, 1, 2, 3]
2. dict sorting
To sort the dictionary, because each item includes a key-value pair, you must choose a comparable key or value to sort
sorted(iterable[, cmp[, key[, reverse]]]
cmp and key generally use lambda
For example:
>>> d={"ok":1,"no":2}
Sort the dictionary by key and return it in the form of a tuple list
>>> ; sorted(d.items, key=lambda d:d[0])
[('no', 2), ('ok', 1)]
Sort the dictionary by value and return it as a tuple list
>>> sorted(d.items, key=lambda d:d[1])
[('ok', 1), ('no', 2)]
3. Tuple list sorting
Such as
>>> li=[(2,'a'),(4,'b'),(1,'d')]
>>> li.sort()
[(1, 'd'), (2, 'a'), (4, 'b')]
If the dictionary is sorted by the first element of the item, it can be converted into a list of tuples
>>> d ={"ok":1,"no":2}
>>> tt=[tuple(item) for item in d.items()]
>>> tt.sort()
[('no', 2), ('ok', 1)]
4 Other people’s implementations, keep a note
The following is an example of a structure
>>> class test:
def __init__ (self,a,b):
>>> tests = [test1,test2]
>>> sorted (tests,cmp = lambda x,y: cmp(x.a, y.a)) (tests,key = lambda d:d.a)
5、
# (IMHO) the simplest approach:
def sortedDictValues1(adict):
items = adict.items()
items.sort()
return [value for key , value in items]
# an alternative implementation, which
# happens to run a bit faster for large
# dictionaries on my machine:
def sortedDictValues2(adict):
keys = adict.keys()
keys.sort ()
return [dict[key] for key in keys]
# a further slight speed-up on my box
# is to map a bound-method:
def sortedDictValues3(adict):
keys = adict.keys ()
keys.sort()
return map(adict.get, keys)

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 English version
Recommended: Win version, supports code prompts!

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools