Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Min/Max From Nested List
#5
'out'sane comprehension using min and max to achieve desired result:

>>> a = [[12, 16], [0, 18], [12, 20], [12, 24], [0, 28], [28, 32], [0, 36], [12, 40], [32, 44], [12, 48]]
>>> max(el for el in sorted(a) if el[0] == min(sorted(a)[0]))
[0, 36]
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
Min/Max From Nested List - by snowman24 - Jan-31-2019, 05:03 PM
RE: Min/Max From Nested List - by ichabod801 - Jan-31-2019, 05:09 PM
RE: Min/Max From Nested List - by perfringo - Jan-31-2019, 05:15 PM
RE: Min/Max From Nested List - by snowman24 - Jan-31-2019, 05:20 PM
RE: Min/Max From Nested List - by perfringo - Jan-31-2019, 05:45 PM
RE: Min/Max From Nested List - by snowman24 - Jan-31-2019, 05:48 PM
RE: Min/Max From Nested List - by perfringo - Feb-01-2019, 09:25 AM
RE: Min/Max From Nested List - by snowman24 - Feb-01-2019, 11:07 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  List all possibilities of a nested-list by flattened lists sparkt 1 975 Feb-23-2023, 02:21 PM
Last Post: sparkt
  Updating nested dict list keys tbaror 2 1,320 Feb-09-2022, 09:37 AM
Last Post: tbaror
  Python Program to Find the Total Sum of a Nested List vlearner 8 5,105 Jan-23-2022, 07:20 PM
Last Post: menator01
  Looping through nested elements and updating the original list Alex_James 3 2,201 Aug-19-2021, 12:05 PM
Last Post: Alex_James
  shuffle a nested list giorgosmarga 11 12,089 Nov-12-2020, 07:04 PM
Last Post: perfringo
Question Save list with nested list into CSV SpongeB0B 1 5,493 Oct-12-2020, 07:26 AM
Last Post: bowlofred
  Struggling with nested list gr3yali3n 3 2,402 Jul-09-2020, 05:30 PM
Last Post: DPaul
  Nested Dictionary/List tonybrown3 5 3,232 May-08-2020, 01:27 AM
Last Post: tonybrown3
  Help removing asterisk item in a nested list. bmcguire 3 2,664 Apr-06-2020, 02:35 PM
Last Post: snippsat
  Make nested system directories based on an unsorted list? koebi 0 1,632 Mar-25-2020, 01:14 PM
Last Post: koebi

Forum Jump:

User Panel Messages

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