Re: Sorting Documentation
- From: "Fredrik Lundh" <fredrik@xxxxxxxxxxxxxx>
- Date: Tue, 8 Nov 2005 11:39:32 +0100
pinkfloydhomer@xxxxxxxxx wrote_
>I want to read a little bit about sorting in Python (sorted() and
> method sort()). But I can't seem to find anything in the documentation
> at the homepage?
sorted() is a function that works on arbitrary sequences, and is
described in the "built-in functions" chapter:
http://www.python.org/doc/current/lib/built-in-funcs.html
sort() is a list method, and is documented under sequences:
http://www.python.org/doc/current/lib/typesseq-mutable.html
</F>
.
- References:
- Sorting Documentation
- From: pinkfloydhomer@xxxxxxxxx
- Sorting Documentation
- Prev by Date: Re: Sorting Documentation
- Next by Date: any python module to calculate sin, cos, arctan?
- Previous by thread: Re: Sorting Documentation
- Next by thread: Re: Sorting Documentation
- Index(es):
Relevant Pages
|