Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Anonymous function: Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 04:55, 12 February 2008
edit
Cburnett
(
talk
|
contribs
)
Administrators
30,708
edits
m
→
Sorting
:
Combine code
← Previous edit
Revision as of 04:56, 12 February 2008
edit
undo
Cburnett
(
talk
|
contribs
)
Administrators
30,708
edits
m
→
Sorting
:
Combine code
Next edit →
Line 33:
a = ['three', 'two', 'four']
a.sort(lambda x,y: cmp(len(x), len(y)))
print a
</source>
which results in
<source lang="python">
['two', 'four', 'three']
</source>