Skip to content

Instantly share code, notes, and snippets.

@danlamanna
Created September 13, 2014 00:15
Show Gist options
  • Select an option

  • Save danlamanna/35cf0443eddc30bc85cc to your computer and use it in GitHub Desktop.

Select an option

Save danlamanna/35cf0443eddc30bc85cc to your computer and use it in GitHub Desktop.
class Foo:
count = 0
def __init__(self, count):
self.count = count
elements = [Foo(5), Foo(2), Foo(4), Foo(1)]
elements.sort(key=lambda x: x.count)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment