Very basic, sorting a list ???

Peter Decker pydecker at gmail.com
Wed Nov 28 19:54:27 EST 2007


On Nov 28, 2007 7:22 PM, stef mientki <stef.mientki at gmail.com> wrote:
>     print 'xx3',ordered_list.sort()

The sort() method returns None. It sorts the list in place; it doesn't
return a copy of the sorted list.

-- 

# p.d.



More information about the Python-list mailing list