Re: Sorting Documentation

2005-11-08 Thread [EMAIL PROTECTED]
For example, where can I find the official documentation on the
list.sort() method?

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Sorting Documentation

2005-11-08 Thread Fredrik Lundh
[EMAIL PROTECTED] 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

 



-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Sorting Documentation

2005-11-08 Thread Simon Brunning
On 8 Nov 2005 02:27:29 -0800, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> 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 documented here -
.

(All found from  here, BTW - .)

--
Cheers,
Simon B,
[EMAIL PROTECTED],
http://www.brunningonline.net/simon/blog/
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Sorting Documentation

2005-11-08 Thread Simon Brunning
On 8 Nov 2005 02:32:44 -0800, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> For example, where can I find the official documentation on the
> list.sort() method?



--
Cheers,
Simon B,
[EMAIL PROTECTED],
http://www.brunningonline.net/simon/blog/
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Sorting Documentation

2005-11-08 Thread Xah Lee

[EMAIL PROTECTED] 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?»

if you want some detailed account on the sort method, see:
http://www.xahlee.org/perl-python/sort_list.html

 Xah
 [EMAIL PROTECTED]
∑ http://xahlee.org/

-- 
http://mail.python.org/mailman/listinfo/python-list