Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Newbie lambda question
#2
lambda are simple functions
code equal to
pairs = [(1, 'one'), (2, 'two'), (3, 'three'), (4, 'four')]
def pair_sort(pair):
	return pair[1] # this point to second object in list (1, 'one')[1] == 'one' 

pairs.sort(key=pair_sort)
print(pairs)
99 percent of computer problems exists between chair and keyboard.
Reply


Messages In This Thread
Newbie lambda question - by Truman - Dec-09-2017, 10:32 PM
RE: Newbie lambda question - by Windspar - Dec-09-2017, 11:09 PM
RE: Newbie lambda question - by wavic - Dec-10-2017, 06:33 AM
RE: Newbie lambda question - by Truman - Dec-10-2017, 04:42 PM
RE: Newbie lambda question - by hshivaraj - Dec-10-2017, 04:47 PM
RE: Newbie lambda question - by j.crater - Dec-10-2017, 04:54 PM
RE: Newbie lambda question - by Truman - Dec-11-2017, 11:21 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How is pandas modifying all rows in an assignment - python-newbie question markm74 1 818 Nov-28-2023, 10:36 PM
Last Post: deanhystad
  newbie question - can't make code work tronic72 2 821 Oct-22-2023, 09:08 PM
Last Post: tronic72
  Newbie question about switching between files - Python/Pycharm Busby222 3 740 Oct-15-2023, 03:16 PM
Last Post: deanhystad
  Newbie.... run for cover. OpenCV question Stevolution2023 2 1,074 Apr-12-2023, 12:57 PM
Last Post: Stevolution2023
  numpy newbie question bcwilly_ca 4 1,331 Feb-10-2023, 05:55 PM
Last Post: jefsummers
  Simple code question about lambda and tuples JasPyt 7 3,574 Oct-04-2021, 05:18 PM
Last Post: snippsat
  Question from complete python's newbie Davicom 3 2,493 Jun-09-2021, 06:09 PM
Last Post: bowlofred
  Newbie question about running Python via GUI on OSX ejwjohn 8 3,748 Feb-05-2021, 03:20 PM
Last Post: Larz60+
  super newbie question: escape character tsavoSG 3 2,595 Jan-13-2021, 04:31 AM
Last Post: tsavoSG
  newbie question....importing a created class ridgerunnersjw 5 2,809 Oct-01-2020, 07:59 PM
Last Post: ridgerunnersjw

Forum Jump:

User Panel Messages

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