logging_strict, (edited )

BFF 1: Chuck is going to be so surprised. We’ve hired the best caterers, cosplay theme, fireworks, yard ales, twister themed blind laser tag, there will be balloons, ball pool, athletic challenge course, fabulous entertainment from top notch talent, show girls, the wine will flow like water

BFF 2: Tell me you didn’t invite that grifter, mypy

BFF 1: I … err … hum. Opps

mypy enters the conversation

Don’t use lambda use def function instead

BFF 2: Man i hate that guy. Rains on our parade and sucks the fun out of the room (and this entire thread).

lascapi,
@lascapi@jlai.lu avatar

I discover the operator module! Amazing! 🤩

The operator Module A third alternative to writing lambda functions is to use the standard library’s operator module. This module contains some predefined functions and function factories, which can replace the most common use cases for lambda functions. Let’s look at both of these separtaely, factories first. Another note: the function that attrgetter returns is implemented in C, so it’s slightly faster than using either a normal or lambda function.

Useful if you want to speed up your code.

driving_crooner,
@driving_crooner@lemmy.eco.br avatar

I use lambda functions on my panda’s data frames when I need to do row operations, with .apply().

tunetardis,

They’re somewhat more capable now that we have the walrus (:=) operator.

BeefPiano,

Can you give an example? Can you use it to initialize vars outside the scope of the lambda?

sugar_in_your_tea,

The general form is:


<span style="color:#323232;">(var := expression) rest of condition
</span>

So you can do something awful like this:


<span style="color:#323232;">lambda: (y := 1) != 2 and y
</span>

Not sure if that’s “good,” but it does kind of let you sneak a statement into the lambda.

tunetardis,

Can you use it to initialize vars outside the scope of the lambda?

No, that’s not what it’s for. It lets you define a temporary local variable within an expression. This is useful in situations where you might want to use the same value more than once within the expression. In a regular function, you would just define a variable first and then use it as many times as you want. But until the walrus operator came along, you couldn’t define a variable within a lambda expression.

Can you give an example?

Ok, I’m trying to think of a simple example. Let’s say you had a database that maps student IDs to records contain their names. To keep things simple, I’ll just make it plain old dict. And then you have a list of student IDs. You want to sort these IDs using the student names in the form “last, first” as the key. So you could go:


<span style="color:#323232;">>>> student_recs = {1261456: {"first": "Harry", "last": "Potter"}, 532153: {"first": "Ron", "last": "Weasley"}, 632453: {"first": "Hermione", "last": "Granger"}}
</span><span style="color:#323232;">>>> student_ids = [1261456, 532153, 632453]
</span><span style="color:#323232;">>>> sorted(student_ids, key = lambda i: (rec := student_recs[i])['last'] + ', ' +  rec['first'])
</span><span style="color:#323232;">[632453, 1261456, 532153]
</span>

The problem here is that student_ids doesn’t contain the student names. You need use the ID to look up the record that contains those. So let’s say the first ID i is 1261456. That would mean:


<span style="color:#323232;">rec := student_recs[i]
</span>

evaluates to:


<span style="color:#323232;">{"first": "Harry", "last": "Potter"}
</span>

Then we are effectively going:


<span style="color:#323232;"> rec['last'] + ', ' + rec['first']
</span>

which should give us:


<span style="color:#323232;"> 'Potter, Harry'
</span>

Without the := you would either have to perform 2 student_recs[i] look-ups to get each name which would be wasteful or replace the lambda with a regular function where you can write rec = student_recs[i] on its own line and then use it.

Am I making any sense?

tunetardis,

Actually, now that I think of it, there’s no reason you need to join the 2 names into a single str. You could just leave it as a tuple of last, first and Python will know what to do in comparing them.


<span style="color:#323232;">>>> sorted(student_ids, key = lambda i: ((rec := student_recs[i])['last'], rec['first']))
</span><span style="color:#323232;">[632453, 1261456, 532153]
</span>

So the lambda would be returning (‘Potter’, ‘Harry’) rather than ‘Potter, Harry’. But whatever. The := part is still the same.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • python@programming.dev
  • everett
  • Youngstown
  • tacticalgear
  • osvaldo12
  • slotface
  • PowerRangers
  • hgfsjryuu7
  • khanakhh
  • kavyap
  • tsrsr
  • InstantRegret
  • DreamBathrooms
  • ngwrru68w68
  • magazineikmin
  • tester
  • rosin
  • modclub
  • thenastyranch
  • vwfavf
  • GTA5RPClips
  • Durango
  • ethstaker
  • mdbf
  • normalnudes
  • cubers
  • cisconetworking
  • Leos
  • anitta
  • All magazines