Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
list sorting question
#1
I was checking up on sorting 2D lists, and found this (works fine):
#sort on first element
def takeFirst(elem):
    return elem[0]
# list
lst = [(2, 2), (3, 4), (4, 1), (1, 3)]
# sort 
lst.sort(key=takeFirst)
# print list
print('Sorted list:', lst)
At first i thought that takeFirst, takeSecond, were some kind of "reserved" words,
but when i replaced takeFirst with "chicken", it also worked !

Question: by what mechanism does takeFirst() know what "elem" is?

thx,
Paul
It is more important to do the right thing, than to do the thing right.(P.Drucker)
Better is the enemy of good. (Montesquieu) = French version for 'kiss'.
Reply


Messages In This Thread
list sorting question - by DPaul - Jun-17-2020, 09:22 AM
RE: list sorting question - by kmzelikahle - Jun-17-2020, 09:33 AM
RE: list sorting question - by ndc85430 - Jun-17-2020, 02:23 PM
RE: list sorting question - by mcmxl22 - Jun-17-2020, 09:38 AM
RE: list sorting question - by DeaD_EyE - Jun-17-2020, 10:36 AM
RE: list sorting question - by DPaul - Jun-17-2020, 02:02 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  List Sorting Problem ZZTurn 5 1,486 Sep-22-2022, 11:23 PM
Last Post: ZZTurn
  Sorting List finndude 9 2,654 Jan-27-2022, 09:37 PM
Last Post: Pedroski55
  sorting a list of lists by an element leapcfm 3 2,034 Sep-10-2021, 03:33 PM
Last Post: leapcfm
  Sorting list of names using a lambda (PyBite #5) Drone4four 2 2,849 Oct-16-2020, 07:30 PM
Last Post: ndc85430
  sorting list of lists pframe 5 33,157 Apr-17-2020, 09:31 PM
Last Post: Larz60+
  sorting list arian29 2 2,222 Feb-02-2020, 10:31 AM
Last Post: ndc85430
  Converting parts of a list to int for sorting menator01 2 2,337 Nov-03-2019, 03:00 PM
Last Post: menator01
  Sorting a copied list is also sorting the original list ? SN_YAZER 3 3,294 Apr-11-2019, 05:10 PM
Last Post: SN_YAZER
  about List question longmail 2 2,485 Nov-30-2018, 02:08 AM
Last Post: longmail
  sorting a list of tuples based on date bluefrog 2 5,926 Aug-10-2018, 02:31 AM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020